Merge branch 'feature/bugfix5.1.3' of https://github.com/ONLYOFFICE/web-apps-pro into feature/bugfix5.1.3

This commit is contained in:
Maxim Kadushkin 2018-04-23 15:30:16 +03:00
commit dd385f3595
2 changed files with 2 additions and 2 deletions

View file

@ -890,7 +890,7 @@ define([
this.api.asc_Save(); this.api.asc_Save();
} }
toolbar.btnsSave.setDisabled(!toolbar.mode.forcesave); toolbar.btnSave.setDisabled(!toolbar.mode.forcesave);
Common.NotificationCenter.trigger('edit:complete', this.toolbar); Common.NotificationCenter.trigger('edit:complete', this.toolbar);
Common.component.Analytics.trackEvent('Save'); Common.component.Analytics.trackEvent('Save');

View file

@ -209,7 +209,7 @@ define([
var mnuitemHideRulers = new Common.UI.MenuItem({ var mnuitemHideRulers = new Common.UI.MenuItem({
caption: me.header.textHideLines, caption: me.header.textHideLines,
checked: Common.localStorage.getBool("pe-hidden-rulers"), checked: Common.localStorage.getBool("pe-hidden-rulers", true),
checkable: true, checkable: true,
value: 'rulers' value: 'rulers'
}); });