[SSE] Change page settings on asc_onUpdateDocumentProps event

This commit is contained in:
Julia Radzhabova 2019-08-08 10:52:48 +03:00
parent fc8ba6cf15
commit 7dafac9d33

View file

@ -3219,7 +3219,6 @@ define([
if (this.api && state) { if (this.api && state) {
this._state.pgsize = [0, 0]; this._state.pgsize = [0, 0];
this.api.asc_changeDocSize(item.value[0], item.value[1], this.api.asc_getActiveWorksheetIndex()); this.api.asc_changeDocSize(item.value[0], item.value[1], this.api.asc_getActiveWorksheetIndex());
Common.NotificationCenter.trigger('page:settings');
Common.component.Analytics.trackEvent('ToolBar', 'Page Size'); Common.component.Analytics.trackEvent('ToolBar', 'Page Size');
} }
@ -3231,7 +3230,6 @@ define([
this._state.pgmargins = undefined; this._state.pgmargins = undefined;
if (item.value !== 'advanced') { if (item.value !== 'advanced') {
this.api.asc_changePageMargins(item.value[1], item.value[3], item.value[0], item.value[2], this.api.asc_getActiveWorksheetIndex()); this.api.asc_changePageMargins(item.value[1], item.value[3], item.value[0], item.value[2], this.api.asc_getActiveWorksheetIndex());
Common.NotificationCenter.trigger('page:settings');
} else { } else {
var win, props, var win, props,
me = this; me = this;
@ -3250,7 +3248,6 @@ define([
Common.localStorage.setItem("sse-pgmargins-right", props.asc_getRight()); Common.localStorage.setItem("sse-pgmargins-right", props.asc_getRight());
me.api.asc_changePageMargins( props.asc_getLeft(), props.asc_getRight(), props.asc_getTop(), props.asc_getBottom(), me.api.asc_getActiveWorksheetIndex()); me.api.asc_changePageMargins( props.asc_getLeft(), props.asc_getRight(), props.asc_getTop(), props.asc_getBottom(), me.api.asc_getActiveWorksheetIndex());
Common.NotificationCenter.trigger('page:settings');
Common.NotificationCenter.trigger('edit:complete', me.toolbar); Common.NotificationCenter.trigger('edit:complete', me.toolbar);
} }
} }
@ -3269,7 +3266,6 @@ define([
this._state.pgorient = undefined; this._state.pgorient = undefined;
if (this.api && item.checked) { if (this.api && item.checked) {
this.api.asc_changePageOrient(item.value==Asc.c_oAscPageOrientation.PagePortrait, this.api.asc_getActiveWorksheetIndex()); this.api.asc_changePageOrient(item.value==Asc.c_oAscPageOrientation.PagePortrait, this.api.asc_getActiveWorksheetIndex());
Common.NotificationCenter.trigger('page:settings');
} }
Common.NotificationCenter.trigger('edit:complete', this.toolbar); Common.NotificationCenter.trigger('edit:complete', this.toolbar);