Commit 840a13f9 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@49652 954022d7-b5bf-4e40-9824-e11837661b57
parent 2c89b3f9
...@@ -194,6 +194,10 @@ function Editor_Copy(api, bCut) ...@@ -194,6 +194,10 @@ 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";
// не убирать!!! это для ие. чтобы не селектились элементы
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);
...@@ -267,6 +271,12 @@ function Editor_Copy(api, bCut) ...@@ -267,6 +271,12 @@ function Editor_Copy(api, bCut)
document.body.style["-o-user-select"] = "none"; document.body.style["-o-user-select"] = "none";
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";
// не убирать!!! это для ие. чтобы не селектились элементы
document.onselectstart= function() {
return false;
}
if(true == bCut) if(true == bCut)
{ {
//������� ���������� �������� //������� ���������� ��������
...@@ -1769,7 +1779,9 @@ function Editor_Paste_GetElem(api, bClean) ...@@ -1769,7 +1779,9 @@ function Editor_Paste_GetElem(api, bClean)
pastebin.style["-webkit-user-select"] = "text"; pastebin.style["-webkit-user-select"] = "text";
pastebin.setAttribute("contentEditable", true); pastebin.setAttribute("contentEditable", true);
pastebin.onpaste = function(e){Body_Paste(api,e);}; pastebin.onpaste = function(e){
Body_Paste(api,e);
};
document.body.appendChild( pastebin ); document.body.appendChild( pastebin );
} }
else if(bClean){ else if(bClean){
...@@ -1919,6 +1931,10 @@ function Editor_Paste(api, bClean) ...@@ -1919,6 +1931,10 @@ 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";
// не убирать!!! это для ие. чтобы не селектились элементы
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";
...@@ -1960,6 +1976,11 @@ function Editor_Paste(api, bClean) ...@@ -1960,6 +1976,11 @@ 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";
// не убирать!!! это для ие. чтобы не селектились элементы
document.onselectstart= function() {
return false;
}
if(!oWordControl.bIsEventPaste) if(!oWordControl.bIsEventPaste)
{ {
Editor_Paste_Exec(api, pastebin); Editor_Paste_Exec(api, pastebin);
......
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