Remove more RainLoop standard/premium licensed code

This commit is contained in:
djmaze 2020-11-25 14:31:20 +01:00
parent 2a1ccc5d24
commit 4f8b07fe85
18 changed files with 3 additions and 326 deletions

View file

@ -14,9 +14,6 @@ class AbstractSystemDropDownUserView extends AbstractViewNext {
constructor() {
super();
this.logoImg = (Settings.get('UserLogo')||'').trim();
this.logoTitle = (Settings.get('UserLogoTitle')||'').trim();
this.mobile = !!Settings.app('mobile');
this.mobileDevice = !!Settings.app('mobileDevice');

View file

@ -63,9 +63,6 @@ class LoginUserView extends AbstractViewNext {
this.additionalCodeErrorAnimation = ko.observable(false).extend({ falseTimeout: 500 });
this.logoImg = (Settings.get('LoginLogo')||'').trim();
this.loginDescription = (Settings.get('LoginDescription')||'').trim();
this.mobile = !!Settings.app('mobile');
this.mobileDevice = !!Settings.app('mobileDevice');

View file

@ -88,9 +88,6 @@ class MessageViewMailBoxUserView extends AbstractViewNext {
this.allowMessageActions = !!Settings.capa(Capa.MessageActions);
this.allowMessageListActions = !!Settings.capa(Capa.MessageListActions);
this.logoImg = (Settings.get('UserLogoMessage')||'').trim();
this.logoIframe = (Settings.get('UserIframeMessage')||'').trim();
this.mobile = !!Settings.app('mobile');
this.attachmentsActions = AppStore.attachmentsActions;