Sanity-check decaffeinate app.views.Mobile

pull/1441/head
Simon Legner 1 year ago
parent 63ff7311c2
commit 1997d1ecbc

@ -1,27 +1,16 @@
// TODO: This file was created by bulk-decaffeinate.
// Sanity-check the conversion and remove this comment.
/*
* decaffeinate suggestions:
* DS102: Remove unnecessary code created because of implicit returns
* DS206: Consider reworking classes to avoid initClass
* DS207: Consider shorter variations of null checks
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/main/docs/suggestions.md
*/
app.views.Mobile = class Mobile extends app.View { app.views.Mobile = class Mobile extends app.View {
static initClass() { static className = "_mobile";
this.className = "_mobile";
this.elements = { static elements = {
body: "body", body: "body",
content: "._container", content: "._container",
sidebar: "._sidebar", sidebar: "._sidebar",
docPicker: "._settings ._sidebar", docPicker: "._settings ._sidebar",
}; };
this.shortcuts = { escape: "onEscape" }; static shortcuts = { escape: "onEscape" };
this.routes = { after: "afterRoute" }; static routes = { after: "afterRoute" };
}
static detect() { static detect() {
if (Cookies.get("override-mobile-detect") != null) { if (Cookies.get("override-mobile-detect") != null) {
@ -198,4 +187,3 @@ app.views.Mobile = class Mobile extends app.View {
} }
} }
}; };
app.views.Mobile.initClass();

Loading…
Cancel
Save