[DE mobile] Fix bug 43821

This commit is contained in:
Julia Svinareva 2019-12-12 14:54:13 +03:00
parent 6ce306f7e6
commit 442a3a722e
5 changed files with 6 additions and 0 deletions

View file

@ -213,6 +213,7 @@ define([
}, },
showStyle: function () { showStyle: function () {
var me = this;
var selector = '#edit-chart-style'; var selector = '#edit-chart-style';
this.showPage(selector, true); this.showPage(selector, true);

View file

@ -144,6 +144,7 @@ define([
}, },
showColors: function () { showColors: function () {
var me = this;
this.showPage('#edit-paragraph-color', true); this.showPage('#edit-paragraph-color', true);
this.paletteBackgroundColor = new Common.UI.ThemeColorPalette({ this.paletteBackgroundColor = new Common.UI.ThemeColorPalette({

View file

@ -194,6 +194,7 @@ define([
}, },
showBorderColor: function () { showBorderColor: function () {
var me = this;
var selector = '#edit-shape-border-color-view'; var selector = '#edit-shape-border-color-view';
this.showPage(selector, true); this.showPage(selector, true);

View file

@ -220,6 +220,7 @@ define([
}, },
showBorderColor: function () { showBorderColor: function () {
var me = this;
this.showPage('#edit-table-border-color-view', true); this.showPage('#edit-table-border-color-view', true);
this.paletteBorderColor = new Common.UI.ThemeColorPalette({ this.paletteBorderColor = new Common.UI.ThemeColorPalette({

View file

@ -195,6 +195,7 @@ define([
}, },
showFontColor: function () { showFontColor: function () {
var me = this;
this.showPage('#edit-text-color', true); this.showPage('#edit-text-color', true);
this.paletteTextColor = new Common.UI.ThemeColorPalette({ this.paletteTextColor = new Common.UI.ThemeColorPalette({
@ -241,6 +242,7 @@ define([
}, },
showBackgroundColor: function () { showBackgroundColor: function () {
var me = this;
this.showPage('#edit-text-background', true); this.showPage('#edit-text-background', true);
this.paletteBackgroundColor = new Common.UI.ThemeColorPalette({ this.paletteBackgroundColor = new Common.UI.ThemeColorPalette({