You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
devdocs/assets/javascripts/views/pages/sqlite.js

42 lines
1.0 KiB

// TODO: This file was created by bulk-decaffeinate.
// Sanity-check the conversion and remove this comment.
/*
* decaffeinate suggestions:
* DS002: Fix invalid constructor
* DS206: Consider reworking classes to avoid initClass
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/main/docs/suggestions.md
*/
//= require views/pages/base
1 year ago
const Cls = (app.views.SqlitePage = class SqlitePage extends (
app.views.BasePage
) {
constructor(...args) {
this.onClick = this.onClick.bind(this);
super(...args);
}
static initClass() {
1 year ago
this.events = { click: "onClick" };
}
onClick(event) {
let el, id;
1 year ago
if (!(id = event.target.getAttribute("data-toggle"))) {
return;
}
if (!(el = this.find(`#${id}`))) {
return;
}
$.stopEvent(event);
1 year ago
if (el.style.display === "none") {
el.style.display = "block";
event.target.textContent = "hide";
} else {
1 year ago
el.style.display = "none";
event.target.textContent = "show";
}
}
});
Cls.initClass();