Commit 831cd711 authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

oApi -> Api

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@60728 954022d7-b5bf-4e40-9824-e11837661b57
parent f8a50059
......@@ -388,7 +388,7 @@
"updateUndoRedoChanged" : function (bCanUndo, bCanRedo) {
self.handlers.trigger("asc_onCanUndoChanged", bCanUndo);
self.handlers.trigger("asc_onCanRedoChanged", bCanRedo);
self.oApi.setUserAlive();
self.Api.setUserAlive();
},
"applyCloseEvent" : function () {self.controller._onWindowKeyDown.apply(self.controller, arguments);},
"isViewerMode" : function () {return self.controller.settings.isViewerMode;},
......@@ -469,11 +469,11 @@
});
this.model.handlers.add("setCanUndo", function (bCanUndo) {
self.handlers.trigger("asc_onCanUndoChanged", bCanUndo);
self.oApi.setUserAlive();
self.Api.setUserAlive();
});
this.model.handlers.add("setCanRedo", function (bCanRedo) {
self.handlers.trigger("asc_onCanRedoChanged", bCanRedo);
self.oApi.setUserAlive();
self.Api.setUserAlive();
});
this.model.handlers.add("setDocumentModified", function (bIsModified) {
self.Api.onUpdateDocumentModified(bIsModified);
......
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