Отладка мобильных версий - не грузился конфиг.

This commit is contained in:
Julia Radzhabova 2016-05-24 14:59:04 +03:00
parent 76a3ee98d8
commit bacf676913
3 changed files with 3 additions and 0 deletions

View file

@ -99,6 +99,7 @@ Ext.define('DE.controller.Main', {
},
loadConfig: function(data) {
this.editorConfig = Ext.merge(this.editorConfig, data.config);
this.editorConfig.user = this._fillUserInfo(this.editorConfig.user);
},

View file

@ -100,6 +100,7 @@ Ext.define('PE.controller.Main', {
},
loadConfig: function(data) {
this.editorConfig = Ext.merge(this.editorConfig, data.config);
this.editorConfig.user = this._fillUserInfo(data.config.user, this.editorConfig.lang, this.textAnonymous);
},

View file

@ -102,6 +102,7 @@ Ext.define('SSE.controller.Main', {
},
loadConfig: function(data) {
this.editorConfig = Ext.merge(this.editorConfig, data.config);
this.editorConfig.user = this._fillUserInfo(this.editorConfig.user, this.editorConfig.lang, this.textAnonymous);
},