Fix Bug 36426.

This commit is contained in:
Julia Radzhabova 2017-11-24 09:31:34 +03:00
parent 493a464076
commit 29810902e4
4 changed files with 10 additions and 0 deletions

View file

@ -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) {

View file

@ -93,6 +93,9 @@ define([
this.addListeners({
'FileMenu': {
'settings:apply': _.bind(this.applySettings, this)
},
'Common.Views.ReviewChanges': {
'settings:apply': _.bind(this.applySettings, this)
}
});
},

View file

@ -92,6 +92,9 @@ define([
this.addListeners({
'FileMenu': {
'settings:apply': _.bind(this.applySettings, this)
},
'Common.Views.ReviewChanges': {
'settings:apply': _.bind(this.applySettings, this)
}
});
},

View file

@ -96,6 +96,9 @@ define([
this.addListeners({
'FileMenu': {
'settings:apply': _.bind(this.applySettings, this)
},
'Common.Views.ReviewChanges': {
'settings:apply': _.bind(this.applySettings, this)
}
});
},