Commit edd1266d authored by Sergey.Konovalov's avatar Sergey.Konovalov Committed by Alexander.Trofimov

копирование без dom элементов

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@62347 954022d7-b5bf-4e40-9824-e11837661b57
parent d5bb43c2
...@@ -5378,7 +5378,7 @@ asc_docs_api.prototype["Native_Editor_Initialize_Settings"] = function(_params) ...@@ -5378,7 +5378,7 @@ asc_docs_api.prototype["Native_Editor_Initialize_Settings"] = function(_params)
/***************************** COPY|PASTE *******************************/ /***************************** COPY|PASTE *******************************/
asc_docs_api.prototype.Call_Menu_Context_Copy = function() asc_docs_api.prototype.Call_Menu_Context_Copy = function()
{ {
var oCopyProcessor = new CopyProcessor(this, null, true); var oCopyProcessor = new CopyProcessor(this, true);
var _binary_data = oCopyProcessor.getSelectedBinary(); var _binary_data = oCopyProcessor.getSelectedBinary();
var _stream = global_memory_stream_menu; var _stream = global_memory_stream_menu;
...@@ -5410,7 +5410,7 @@ asc_docs_api.prototype.Call_Menu_Context_Copy = function() ...@@ -5410,7 +5410,7 @@ asc_docs_api.prototype.Call_Menu_Context_Copy = function()
}; };
asc_docs_api.prototype.Call_Menu_Context_Cut = function() asc_docs_api.prototype.Call_Menu_Context_Cut = function()
{ {
var oCopyProcessor = new CopyProcessor(this, null, true); var oCopyProcessor = new CopyProcessor(this, true);
var _binary_data = oCopyProcessor.getSelectedBinary(); var _binary_data = oCopyProcessor.getSelectedBinary();
this.WordControl.m_oLogicDocument.Create_NewHistoryPoint(); this.WordControl.m_oLogicDocument.Create_NewHistoryPoint();
......
This diff is collapsed.
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