Commit 7771cd1a authored by Oleg.Korshul's avatar Oleg.Korshul Committed by Alexander.Trofimov

git-svn-id:...

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@49355 954022d7-b5bf-4e40-9824-e11837661b57
parent 278a3897
......@@ -34,6 +34,11 @@ var selectionflag_DrawingObject = 0x002;
var orientation_Portrait = 0x00;
var orientation_Landscape = 0x01;
// не убирать!!! это для ие. чтобы не селектились элементы
document.onselectstart= function() {
return false;
}
function CEditorPage(api)
{
// ------------------------------------------------------------------
......@@ -163,6 +168,8 @@ function CEditorPage(api)
this.bIsUseKeyPress = true;
this.bIsEventPaste = false;
this.m_bIsIE = (/MSIE/g.test(navigator.userAgent)) ? true : false;
// сплиттеры (для табнейлов и для заметок)
this.Splitter1Pos = 0;
this.Splitter1PosMin = 0;
......@@ -1281,10 +1288,13 @@ function CEditorPage(api)
var oWordControl = oThis;
if (!oThis.m_bIsIE)
{
if (e.preventDefault)
e.preventDefault();
else
e.returnValue = false;
}
oWordControl.Thumbnails.SetFocusElement(FOCUS_OBJECT_MAIN);
if (oWordControl.DemonstrationManager.Mode)
......
......@@ -36,6 +36,11 @@ var orientation_Landscape = 0x01;
var tableSpacingMinValue = 0.02;//0.02мм
// не убирать!!! это для ие. чтобы не селектились элементы
document.onselectstart= function() {
return false;
}
function CEditorPage(api)
{
this.Name = "";
......@@ -62,6 +67,7 @@ function CEditorPage(api)
this.ReaderModeDiv = null;
this.m_oOverlayApi = new COverlay();
this.m_bIsIE = (/MSIE/g.test(navigator.userAgent)) ? true : false;
this.m_oPanelRight_buttonRulers = null;
this.m_oPanelRight_vertScroll = null;
......@@ -1417,10 +1423,13 @@ function CEditorPage(api)
if (false === oThis.m_oApi.bInit_word_control)
return;
if (!oThis.m_bIsIE)
{
if (e.preventDefault)
e.preventDefault();
else
e.returnValue = false;
}
var oWordControl = oThis;
......
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