Commit f55fa1b5 authored by Alexander.Trofimov's avatar Alexander.Trofimov

Для IE preventDefault делать не нужно

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@53970 954022d7-b5bf-4e40-9824-e11837661b57
parent f7ad63f0
...@@ -1156,10 +1156,13 @@ ...@@ -1156,10 +1156,13 @@
return; return;
} }
} }
if (event.preventDefault) // Для IE preventDefault делать не нужно
event.preventDefault(); if (!(AscBrowser.isIE || AscBrowser.isOpera)) {
else if (event.preventDefault)
event.returnValue = false; event.preventDefault();
else
event.returnValue = false;
}
// Запоминаем координаты нажатия // Запоминаем координаты нажатия
this.mouseDownLastCord = coord; this.mouseDownLastCord = coord;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment