Fix Bug 36426.
This commit is contained in:
parent
493a464076
commit
29810902e4
|
@ -547,6 +547,7 @@ define([
|
|||
this.api.asc_setAutoSaveGap(value);
|
||||
}
|
||||
Common.NotificationCenter.trigger('edit:complete', this.view);
|
||||
this.view.fireEvent('settings:apply', [this]);
|
||||
},
|
||||
|
||||
disableEditing: function(disable) {
|
||||
|
|
|
@ -93,6 +93,9 @@ define([
|
|||
this.addListeners({
|
||||
'FileMenu': {
|
||||
'settings:apply': _.bind(this.applySettings, this)
|
||||
},
|
||||
'Common.Views.ReviewChanges': {
|
||||
'settings:apply': _.bind(this.applySettings, this)
|
||||
}
|
||||
});
|
||||
},
|
||||
|
|
|
@ -92,6 +92,9 @@ define([
|
|||
this.addListeners({
|
||||
'FileMenu': {
|
||||
'settings:apply': _.bind(this.applySettings, this)
|
||||
},
|
||||
'Common.Views.ReviewChanges': {
|
||||
'settings:apply': _.bind(this.applySettings, this)
|
||||
}
|
||||
});
|
||||
},
|
||||
|
|
|
@ -96,6 +96,9 @@ define([
|
|||
this.addListeners({
|
||||
'FileMenu': {
|
||||
'settings:apply': _.bind(this.applySettings, this)
|
||||
},
|
||||
'Common.Views.ReviewChanges': {
|
||||
'settings:apply': _.bind(this.applySettings, this)
|
||||
}
|
||||
});
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue