Commit 588f01d4 authored by Oleg.Korshul's avatar Oleg.Korshul Committed by Alexander.Trofimov

TextBoxInput zIndex -> below 100

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@56714 954022d7-b5bf-4e40-9824-e11837661b57
parent 53005bd8
......@@ -3159,7 +3159,7 @@ function CEditorPage(api)
oThis.TextBoxInputFocus = true;
CollaborativeEditing.m_bGlobalLock = true;
oThis.CheckTextBoxInputPos();
oThis.TextBoxInput.style.zIndex = 1000;
oThis.TextBoxInput.style.zIndex = 90;
}
this.OnTextBoxInput = function()
......@@ -3216,7 +3216,7 @@ function CEditorPage(api)
// вот такая заглушка под firefox если этого не делать, то будет плохо перерисовываться border)
var oldZindex = parseInt(this.TextBoxInput.style.zIndex);
var newZindex = (oldZindex == 1000) ? "999" : "1000";
var newZindex = (oldZindex == 90) ? "89" : "90";
this.TextBoxInput.style.zIndex = newZindex;
}
......
......@@ -3858,7 +3858,7 @@ function CEditorPage(api)
CollaborativeEditing.m_bGlobalLock = true;
oThis.CheckTextBoxInputPos();
this.ReinitTB(true);
oThis.TextBoxInput.style.zIndex = 1000;
oThis.TextBoxInput.style.zIndex = 90;
}
this.OnTextBoxInput = function()
......@@ -3915,7 +3915,7 @@ function CEditorPage(api)
// вот такая заглушка под firefox если этого не делать, то будет плохо перерисовываться border)
var oldZindex = parseInt(this.TextBoxInput.style.zIndex);
var newZindex = (oldZindex == 1000) ? "999" : "1000";
var newZindex = (oldZindex == 90) ? "89" : "90";
this.TextBoxInput.style.zIndex = newZindex;
}
......
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