Commit 69caefa1 authored by Ilya.Kirillov's avatar Ilya.Kirillov

Сделал, чтобы нельзя было производить вставку через кнопку на тулбаре, в...

Сделал, чтобы нельзя было производить вставку через кнопку на тулбаре, в залоченные объекты (баг 27739). 

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@59873 954022d7-b5bf-4e40-9824-e11837661b57
parent 83b14579
...@@ -2732,21 +2732,24 @@ asc_docs_api.prototype.Cut = function() ...@@ -2732,21 +2732,24 @@ asc_docs_api.prototype.Cut = function()
} }
asc_docs_api.prototype.Paste = function() asc_docs_api.prototype.Paste = function()
{ {
if (!window.GlobalPasteFlag) if (false === this.WordControl.m_oLogicDocument.Document_Is_SelectionLocked(changestype_Paragraph_Content))
{ {
if (!window.USER_AGENT_SAFARI_MACOS) if (!window.GlobalPasteFlag)
{ {
window.GlobalPasteFlag = true; if (!window.USER_AGENT_SAFARI_MACOS)
return Editor_Paste_Button(this);
}
else
{
if (0 === window.GlobalPasteFlagCounter)
{ {
SafariIntervalFocus();
window.GlobalPasteFlag = true; window.GlobalPasteFlag = true;
return Editor_Paste_Button(this); return Editor_Paste_Button(this);
} }
else
{
if (0 === window.GlobalPasteFlagCounter)
{
SafariIntervalFocus();
window.GlobalPasteFlag = true;
return Editor_Paste_Button(this);
}
}
} }
} }
} }
......
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