Commit 25759fa4 authored by Igor.Zotov's avatar Igor.Zotov Committed by Alexander.Trofimov

копирование/вставка только из локального буфера обмена в Safari(Mac)(флаг...

копирование/вставка только из локального буфера обмена в Safari(Mac)(флаг isOnlyLocalBufferSafariWord чтобы включить)

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@48071 954022d7-b5bf-4e40-9824-e11837661b57
parent 7334bf64
......@@ -22,6 +22,7 @@
}
var g_bIsDocumentCopyPaste = true;
var isOnlyLocalBufferSafariWord = false;
function Editor_Copy_GetElem(api)
{
var ElemToSelect = document.getElementById( "SelectId" );
......@@ -1646,6 +1647,13 @@ function Editor_Paste(api, bClean)
var oWordControl = api.WordControl;
oWordControl.bIsEventPaste = false;
var oDocument = oWordControl.m_oLogicDocument;
if(isOnlyLocalBufferSafariWord && navigator.userAgent.toLowerCase().indexOf('safari') > -1 && navigator.userAgent.toLowerCase().indexOf('mac'))
{
var ElemToSelect = document.getElementById( "SelectId" );
if(ElemToSelect)
Editor_Paste_Exec(api, ElemToSelect);
return;
}
if(false == CanPaste(oDocument))
return;
......
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