error on v1.0.1
git-svn-id: https://plugins.svn.wordpress.org/pagemash/trunk@34811 b8457f37-d9ea-0310-8a92-e5e31aec5664
This commit is contained in:
parent
e26d2a4f81
commit
8a7b00f772
15
pagemash.php
15
pagemash.php
|
@ -354,13 +354,14 @@ window.addEvent('domready', function(){
|
|||
});
|
||||
|
||||
//disable drag text-selection
|
||||
if (typeof target.style.MozUserSelect!="undefined")
|
||||
document.body.style.MozUserSelect="none"; //for Mozilla
|
||||
else if (typeof target.onselectstart!="undefined")
|
||||
document.body.onselectstart=function(){return false} //for IE
|
||||
else
|
||||
document.body.onmousedown=function(){return false} //for safari, opera, etc
|
||||
}
|
||||
var target = document.body;
|
||||
if (typeof target.onselectstart!="undefined") //for IE
|
||||
target.onselectstart=function(){return false}
|
||||
else if (typeof target.style.MozUserSelect!="undefined") //for mozilla
|
||||
target.style.MozUserSelect="none"
|
||||
else //for safari, opera, etc
|
||||
target.onmousedown=function(){return false}
|
||||
|
||||
|
||||
}); /* close dom ready */
|
||||
</script>
|
||||
|
|
Loading…
Reference in New Issue