avoid text selection when moving a table object in MSIE 6

This commit is contained in:
Marc Delisle
2007-01-04 18:19:59 +00:00
parent a3c4e465e4
commit 0b1f82cc79
2 changed files with 8 additions and 1 deletions

View File

@@ -39,7 +39,10 @@ isIE = document.all && !window.opera;
isNN = !document.all && document.getElementById;
isN4 = document.layers;
if(isIE) window.onscroll = General_scroll;
if (isIE) {
window.onscroll = General_scroll;
document.onselectstart = function () {return false;};
}
//document.onmouseup = function(){General_scroll_end();}
function MouseDown(e)