Small fixes

This commit is contained in:
RainLoop Team 2016-05-06 22:06:16 +03:00
parent b6fcd8e992
commit 768ce1d85e
5 changed files with 90 additions and 90 deletions

View file

@ -11,7 +11,7 @@ class SettingsStorage
this.settings = window.rainloopAppData || {};
this.settings = Utils.isNormal(this.settings) ? this.settings : {};
this.appSettings = Utils.getConfigurationFromScriptTag('application');
this.appSettings = this.settings.System || null;
this.appSettings = Utils.isNormal(this.appSettings) ? this.appSettings : {};
}