[DE mobile] Fix warnings

This commit is contained in:
JuliaSvinareva 2021-04-29 14:12:14 +03:00
parent 4080a1ab27
commit 261f4d701b
2 changed files with 7 additions and 0 deletions

View file

@ -24,6 +24,7 @@ export class storeFocusObjects {
_headerType = 1;
resetFocusObjects (objects) {
this._focusObjects = objects;
}
get settings() {

View file

@ -20,6 +20,11 @@ export class storeParagraphSettings {
styleName = undefined;
initEditorStyles (styles) {
this.styles = styles.get_MergedStyles();
this.styleThumbSize = {
width : styles.STYLE_THUMBNAIL_WIDTH,
height : styles.STYLE_THUMBNAIL_HEIGHT
};
}
get paragraphStyles () {
@ -34,6 +39,7 @@ export class storeParagraphSettings {
}
changeParaStyleName (name) {
this.styleName = name;
}
backColor = undefined;