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

@@ -5,6 +5,10 @@ phpMyAdmin - ChangeLog
$Id$
$HeadURL$
2007-01-04 Marc Delisle <lem9@users.sourceforge.net>
* pmd/scripts/move.js: avoid text selection when moving a table object
under MSIE 6, thanks to Ivan Kirillov
2007-01-02 Marc Delisle <lem9@users.sourceforge.net>
* Designer: various fixes and improvements (for example support
for MSIE 6), thanks to Ivan Kirillov

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)