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/support_tables.js

24 lines
634 B

/*
* decaffeinate suggestions:
* DS206: Consider reworking classes to avoid initClass
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/main/docs/suggestions.md
*/
//= require views/pages/base
const Cls = (app.views.SupportTablesPage = class SupportTablesPage extends app.views.BasePage {
static initClass() {
this.events =
{click: 'onClick'};
}
onClick(event) {
if (!event.target.classList.contains('show-all')) { return; }
$.stopEvent(event);
let el = event.target;
while (el.tagName !== 'TABLE') { el = el.parentNode; }
el.classList.add('show-all');
}
});
Cls.initClass();