mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-02 14:07:04 +03:00
Reduce JavaScript footprint
This commit is contained in:
parent
689126c57d
commit
b12852bd08
42 changed files with 240 additions and 426 deletions
|
|
@ -95,7 +95,7 @@ export class AbstractViewLeft extends AbstractView
|
|||
{
|
||||
constructor(templateID)
|
||||
{
|
||||
super(templateID, 'Left');
|
||||
super(templateID, 'left');
|
||||
this.leftPanelDisabled = leftPanelDisabled;
|
||||
}
|
||||
}
|
||||
|
|
@ -104,7 +104,7 @@ export class AbstractViewRight extends AbstractView
|
|||
{
|
||||
constructor(templateID)
|
||||
{
|
||||
super(templateID, 'Right');
|
||||
super(templateID, 'right');
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -151,7 +151,7 @@ export class AbstractViewSettings
|
|||
|
||||
export class AbstractViewLogin extends AbstractView {
|
||||
constructor(templateID) {
|
||||
super(templateID, 'Content');
|
||||
super(templateID, 'content');
|
||||
this.formError = ko.observable(false).extend({ falseTimeout: 500 });
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue