Commit 3dd6c389 authored by Oleg.Korshul's avatar Oleg.Korshul Committed by Alexander.Trofimov

delete onselectstart for ie

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@56376 954022d7-b5bf-4e40-9824-e11837661b57
parent 140f3505
...@@ -132,13 +132,6 @@ function Editor_Copy_Button(api, bCut) ...@@ -132,13 +132,6 @@ function Editor_Copy_Button(api, bCut)
delete document.body.style["user-select"]; delete document.body.style["user-select"];
document.body.style["-webkit-user-select"] = "text"; document.body.style["-webkit-user-select"] = "text";
if (window.USER_AGENT_IE)
{
// не убирать!!! это для ие. чтобы не селектились элементы
document.onselectstart= function() {
}
}
if (null != api.WordControl.m_oLogicDocument) if (null != api.WordControl.m_oLogicDocument)
{ {
var oCopyProcessor = new CopyProcessor(api, ElemToSelect); var oCopyProcessor = new CopyProcessor(api, ElemToSelect);
...@@ -169,14 +162,6 @@ function Editor_Copy_Button(api, bCut) ...@@ -169,14 +162,6 @@ function Editor_Copy_Button(api, bCut)
document.body.style["user-select"] = "none"; document.body.style["user-select"] = "none";
document.body.style["-webkit-user-select"] = "none"; document.body.style["-webkit-user-select"] = "none";
if (window.USER_AGENT_IE)
{
// не убирать!!! это для ие. чтобы не селектились элементы
document.onselectstart= function() {
return false;
}
}
if(true == bCut) if(true == bCut)
{ {
//������� ���������� �������� //������� ���������� ��������
...@@ -226,13 +211,6 @@ function Editor_Copy(api, bCut) ...@@ -226,13 +211,6 @@ function Editor_Copy(api, bCut)
delete document.body.style["user-select"]; delete document.body.style["user-select"];
document.body.style["-webkit-user-select"] = "text"; document.body.style["-webkit-user-select"] = "text";
if (window.USER_AGENT_IE)
{
// не убирать!!! это для ие. чтобы не селектились элементы
document.onselectstart= function() {
}
}
if (null != api.WordControl.m_oLogicDocument) if (null != api.WordControl.m_oLogicDocument)
{ {
var oCopyProcessor = new CopyProcessor(api, ElemToSelect); var oCopyProcessor = new CopyProcessor(api, ElemToSelect);
...@@ -306,14 +284,6 @@ function Editor_Copy(api, bCut) ...@@ -306,14 +284,6 @@ function Editor_Copy(api, bCut)
document.body.style["user-select"] = "none"; document.body.style["user-select"] = "none";
document.body.style["-webkit-user-select"] = "none"; document.body.style["-webkit-user-select"] = "none";
if (window.USER_AGENT_IE)
{
// не убирать!!! это для ие. чтобы не селектились элементы
document.onselectstart= function() {
return false;
}
}
if(true == bCut) if(true == bCut)
{ {
//������� ���������� �������� //������� ���������� ��������
...@@ -2195,13 +2165,6 @@ function Editor_Paste_Button(api) ...@@ -2195,13 +2165,6 @@ function Editor_Paste_Button(api)
delete document.body.style["user-select"]; delete document.body.style["user-select"];
document.body.style["-webkit-user-select"] = "text"; document.body.style["-webkit-user-select"] = "text";
if (window.USER_AGENT_IE)
{
// не убирать!!! это для ие. чтобы не селектились элементы
document.onselectstart= function() {
}
}
var pastebin = Editor_Paste_GetElem(api, true); var pastebin = Editor_Paste_GetElem(api, true);
pastebin.style.display = "block"; pastebin.style.display = "block";
...@@ -2227,14 +2190,6 @@ function Editor_Paste_Button(api) ...@@ -2227,14 +2190,6 @@ function Editor_Paste_Button(api)
document.body.style["user-select"] = "none"; document.body.style["user-select"] = "none";
document.body.style["-webkit-user-select"] = "none"; document.body.style["-webkit-user-select"] = "none";
if (window.USER_AGENT_IE)
{
// не убирать!!! это для ие. чтобы не селектились элементы
document.onselectstart= function() {
return false;
}
}
History.Create_NewPoint(); History.Create_NewPoint();
Editor_Paste(api, false); Editor_Paste(api, false);
return true; return true;
...@@ -2309,13 +2264,6 @@ function Editor_Paste(api, bClean) ...@@ -2309,13 +2264,6 @@ function Editor_Paste(api, bClean)
delete document.body.style["user-select"]; delete document.body.style["user-select"];
document.body.style["-webkit-user-select"] = "text"; document.body.style["-webkit-user-select"] = "text";
if (window.USER_AGENT_IE)
{
// не убирать!!! это для ие. чтобы не селектились элементы
document.onselectstart= function() {
}
}
var Text; var Text;
var pastebin = Editor_Paste_GetElem(api, bClean); var pastebin = Editor_Paste_GetElem(api, bClean);
pastebin.style.display = "block"; pastebin.style.display = "block";
...@@ -2373,14 +2321,6 @@ function Editor_Paste(api, bClean) ...@@ -2373,14 +2321,6 @@ function Editor_Paste(api, bClean)
document.body.style["user-select"] = "none"; document.body.style["user-select"] = "none";
document.body.style["-webkit-user-select"] = "none"; document.body.style["-webkit-user-select"] = "none";
if (window.USER_AGENT_IE)
{
// не убирать!!! это для ие. чтобы не селектились элементы
document.onselectstart= function() {
return false;
}
}
if (!window.USER_AGENT_SAFARI_MACOS) if (!window.USER_AGENT_SAFARI_MACOS)
pastebin.onpaste = null; pastebin.onpaste = null;
......
...@@ -34,11 +34,6 @@ var selectionflag_DrawingObject = 0x002; ...@@ -34,11 +34,6 @@ var selectionflag_DrawingObject = 0x002;
var orientation_Portrait = 0x00; var orientation_Portrait = 0x00;
var orientation_Landscape = 0x01; var orientation_Landscape = 0x01;
// не убирать!!! это для ие. чтобы не селектились элементы
document.onselectstart= function() {
return false;
}
var GlobalSkinTeamlab = { var GlobalSkinTeamlab = {
BackgroundColor : "#B0B0B0", BackgroundColor : "#B0B0B0",
RulerDark : "#B0B0B0", RulerDark : "#B0B0B0",
......
...@@ -36,14 +36,6 @@ var orientation_Landscape = 0x01; ...@@ -36,14 +36,6 @@ var orientation_Landscape = 0x01;
var tableSpacingMinValue = 0.02;//0.02мм var tableSpacingMinValue = 0.02;//0.02мм
if (AscBrowser.isIE || window.opera)
{
// не убирать!!! это для ие. чтобы не селектились элементы
document.onselectstart= function() {
return false;
}
}
var GlobalSkinTeamlab = { var GlobalSkinTeamlab = {
Name : "classic", Name : "classic",
RulersButton : true, RulersButton : true,
......
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