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

Bug 25545 - [CoEdit] Комментарий, созданный на второй странице приходит другому юзеру на первую

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@57535 954022d7-b5bf-4e40-9824-e11837661b57
parent c83ed616
...@@ -2648,6 +2648,7 @@ UndoRedoWorkbook.prototype = { ...@@ -2648,6 +2648,7 @@ UndoRedoWorkbook.prototype = {
} }
} }
} }
this.wb.handlers.trigger("updateWorksheetByModel");
} }
else if(historyitem_Workbook_SheetRemove == Type) else if(historyitem_Workbook_SheetRemove == Type)
{ {
...@@ -2668,6 +2669,7 @@ UndoRedoWorkbook.prototype = { ...@@ -2668,6 +2669,7 @@ UndoRedoWorkbook.prototype = {
this.wb.removeWorksheet(nIndex); this.wb.removeWorksheet(nIndex);
} }
} }
this.wb.handlers.trigger("updateWorksheetByModel");
} }
else if(historyitem_Workbook_SheetMove == Type) else if(historyitem_Workbook_SheetMove == Type)
{ {
...@@ -2679,6 +2681,7 @@ UndoRedoWorkbook.prototype = { ...@@ -2679,6 +2681,7 @@ UndoRedoWorkbook.prototype = {
{ {
this.wb.replaceWorksheet(Data.from, Data.to); this.wb.replaceWorksheet(Data.from, Data.to);
} }
this.wb.handlers.trigger("updateWorksheetByModel");
} }
else if(historyitem_Workbook_SheetPositions == Type) else if(historyitem_Workbook_SheetPositions == Type)
{ {
......
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