Commit 410bad09 authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

Правка для IE (чтобы не селектились элементы)

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@53969 954022d7-b5bf-4e40-9824-e11837661b57
parent 48792d67
......@@ -29,7 +29,7 @@ AscBrowser.isMacOs = (AscBrowser.userAgent.indexOf('mac') > -1);
AscBrowser.isSafari = (AscBrowser.userAgent.indexOf("safari") > -1);
// macOs safari detect
AscBrowser.isSafariMacOs = (AscBrowser.isSafari && AscBrowser.isMacOs) ? true : false;
AscBrowser.isSafariMacOs = (AscBrowser.isSafari && AscBrowser.isMacOs);
if (AscBrowser.isSafariMacOs)
{
// браузеры под мак все определяются как сафари
......
......@@ -127,6 +127,10 @@
if (this.element.onselectstart) {
this.element.onselectstart = function () {return false;};
}
if (AscBrowser.isIE || AscBrowser.isOpera) {
// не убирать!!! это для ие. чтобы не селектились элементы
document.onselectstart = function () {return false;};
}
if (this.element.addEventListener) {
this.element.addEventListener("mousedown" , function () {return self._onMouseDown.apply(self, arguments);} , false);
......
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