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,6 +2732,8 @@ asc_docs_api.prototype.Cut = function() ...@@ -2732,6 +2732,8 @@ asc_docs_api.prototype.Cut = function()
} }
asc_docs_api.prototype.Paste = function() asc_docs_api.prototype.Paste = function()
{ {
if (false === this.WordControl.m_oLogicDocument.Document_Is_SelectionLocked(changestype_Paragraph_Content))
{
if (!window.GlobalPasteFlag) if (!window.GlobalPasteFlag)
{ {
if (!window.USER_AGENT_SAFARI_MACOS) if (!window.USER_AGENT_SAFARI_MACOS)
...@@ -2749,6 +2751,7 @@ asc_docs_api.prototype.Paste = function() ...@@ -2749,6 +2751,7 @@ asc_docs_api.prototype.Paste = function()
} }
} }
} }
}
} }
asc_docs_api.prototype.Share = function(){ asc_docs_api.prototype.Share = function(){
......
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