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:
jmash 2008-03-14 22:51:27 +00:00
parent e26d2a4f81
commit 8a7b00f772
1 changed files with 8 additions and 7 deletions

View File

@ -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>