Commit 7334bf64 authored by Igor.Zotov's avatar Igor.Zotov Committed by Alexander.Trofimov

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

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

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@48070 954022d7-b5bf-4e40-9824-e11837661b57
parent d456a26a
......@@ -35,6 +35,7 @@
var isTruePaste = false;
//activate local buffer
var activateLocalStorage = true;
var isOnlyLocalBufferSafari = false;
var Base64 = {
......@@ -524,8 +525,12 @@
doc.body.style["user-select"] = "none";
doc.body.style["-webkit-user-select"] = "none";
t.elementText.style.display = "none";
var textInsert = t.elementText.value;
if(isOnlyLocalBufferSafari && navigator.userAgent.toLowerCase().indexOf('safari') > -1 && navigator.userAgent.toLowerCase().indexOf('mac') && t.lStorageText)
textInsert = t.lStorageText;
// for paste event
callback(t.elementText.value, []);
callback(textInsert, []);
if($.browser["mozilla"])
t._getStylesSelect();
},
......@@ -1426,6 +1431,9 @@
var pasteFragment = node;
var t = this;
if(isOnlyLocalBufferSafari && navigator.userAgent.toLowerCase().indexOf('safari') > -1 && navigator.userAgent.toLowerCase().indexOf('mac'))
onlyFromLocalStorage = true;
if(activateLocalStorage)
{
//в случае вставки по нажатию на правую кнопку мыши
......
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