isMobile() not used in templates

This commit is contained in:
the-djmaze 2023-02-23 14:04:35 +01:00
parent e1833ae032
commit 57f497cf63
4 changed files with 4 additions and 10 deletions

View file

@ -90,7 +90,7 @@ export class MailMessageList extends AbstractViewRight {
this.composeInEdit = ComposePopupView.inEdit;
this.isMobile = ThemeStore.isMobile;
this.isMobile = ThemeStore.isMobile; // Obsolete
this.leftPanelDisabled = leftPanelDisabled;
this.toggleLeftPanel = toggleLeftPanel;

View file

@ -9,7 +9,6 @@ export class SettingsPaneUserView extends AbstractViewRight {
constructor() {
super();
this.isMobile = ThemeStore.isMobile;
this.leftPanelDisabled = leftPanelDisabled;
this.toggleLeftPanel = toggleLeftPanel;
}