[Desktop] config wasn't updated

This commit is contained in:
Maxim Kadushkin 2018-04-17 15:10:21 +03:00
parent 4f07c793ae
commit f9bd3b3d47
4 changed files with 16 additions and 5 deletions

View file

@ -50,21 +50,26 @@ define([
_.extend(config, opts);
if ( config.isDesktopApp ) {
Common.NotificationCenter.on('app:ready', function (config) {
Common.NotificationCenter.on('app:ready', function (opts) {
_.extend(config, opts);
!!app && app.execCommand('doc:onready', '');
});
}
},
process: function (opts) {
if ( opts == 'goback' ) {
if ( config.isDesktopApp && !!app ) {
if ( config.isDesktopApp && !!app ) {
if ( opts == 'goback' ) {
app.execCommand('go:folder',
config.isOffline ? 'offline' : config.customization.goback.url);
return true;
} else
if ( opts == 'preloader:hide' ) {
app.execCommand('editor:onready', '');
return true;
}
return false;
}
return false;
}
};
};

View file

@ -1589,6 +1589,8 @@ define([
Common.NotificationCenter.trigger('layout:changed', 'main');
$('#loading-mask').hide().remove();
Common.Controllers.Desktop.process('preloader:hide');
},
onDownloadUrl: function(url) {

View file

@ -1332,6 +1332,8 @@ define([
Common.NotificationCenter.trigger('layout:changed', 'main');
$('#loading-mask').hide().remove();
Common.Controllers.Desktop.process('preloader:hide');
},
onDownloadUrl: function(url) {

View file

@ -1468,6 +1468,8 @@ define([
this.stackLongActions.pop({id: InitApplication, type: Asc.c_oAscAsyncActionType.BlockInteraction});
Common.NotificationCenter.trigger('layout:changed', 'main');
$('#loading-mask').hide().remove();
Common.Controllers.Desktop.process('preloader:hide');
},
onDownloadUrl: function(url) {