Merge pull request #99 from ONLYOFFICE/feature/bugfix5.1.3

Feature/bugfix5.1.3
This commit is contained in:
Alexey Golubev 2018-04-23 19:16:42 +03:00 committed by GitHub
commit 2281bc8b12
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View file

@ -242,13 +242,13 @@
position: absolute; position: absolute;
bottom: 0; bottom: 0;
width: 100%; width: 100%;
z-index: 1041; z-index: 102;
} }
.toolbar { .toolbar {
&.cover { &.cover {
ul { ul {
z-index: 1042; z-index: 102;
} }
} }
} }

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'
}); });