Reduce JavaScript footprint

This commit is contained in:
the-djmaze 2022-10-10 13:52:56 +02:00
parent 689126c57d
commit b12852bd08
42 changed files with 240 additions and 426 deletions

View file

@ -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 });
}