avoid text selection when moving a table object in MSIE 6
This commit is contained in:
@@ -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
|
||||
|
@@ -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)
|
||||
|
Reference in New Issue
Block a user