avoid text selection when moving a table object in MSIE 6
This commit is contained in:
@@ -5,6 +5,10 @@ phpMyAdmin - ChangeLog
|
|||||||
$Id$
|
$Id$
|
||||||
$HeadURL$
|
$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>
|
2007-01-02 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* Designer: various fixes and improvements (for example support
|
* Designer: various fixes and improvements (for example support
|
||||||
for MSIE 6), thanks to Ivan Kirillov
|
for MSIE 6), thanks to Ivan Kirillov
|
||||||
|
@@ -39,7 +39,10 @@ isIE = document.all && !window.opera;
|
|||||||
isNN = !document.all && document.getElementById;
|
isNN = !document.all && document.getElementById;
|
||||||
isN4 = document.layers;
|
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();}
|
//document.onmouseup = function(){General_scroll_end();}
|
||||||
function MouseDown(e)
|
function MouseDown(e)
|
||||||
|
Reference in New Issue
Block a user