Difference between revisions of "MediaWiki:Common.js"
Jump to navigation
Jump to search
(Remove GA and Yandex.) |
|||
| (14 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
/* Any JavaScript here will be loaded for all users on every page load. */ | /* Any JavaScript here will be loaded for all users on every page load. */ | ||
| − | |||
| − | + | // == filter-list-by-form.js ==================================================== | |
| − | + | if (mw.config.get('wgPageName') == 'Germany/Banking/Current') { | |
| − | + | mw.loader.getScript('/resources.custom/filter-list-by-form.js') | |
| − | + | .then(function () { | |
| − | + | const filterListByForm = new FilterListByForm('form.form-list-filter-js', 'table.form-list-filter-js tr.filterable'); | |
| − | + | const dataToContent = new DataToContent('table.form-list-filter-js tr', 'td.{key}'); | |
| − | + | }, function (e) { | |
| − | + | mw.log.error(e.message); | |
| − | + | }); | |
| − | + | } | |
| − | + | // == /filter-list-by-form.js =================================================== | |
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | ( | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | }) | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | // == / | ||
Latest revision as of 13:21, 24 October 2023
/* Any JavaScript here will be loaded for all users on every page load. */
// == filter-list-by-form.js ====================================================
if (mw.config.get('wgPageName') == 'Germany/Banking/Current') {
mw.loader.getScript('/resources.custom/filter-list-by-form.js')
.then(function () {
const filterListByForm = new FilterListByForm('form.form-list-filter-js', 'table.form-list-filter-js tr.filterable');
const dataToContent = new DataToContent('table.form-list-filter-js tr', 'td.{key}');
}, function (e) {
mw.log.error(e.message);
});
}
// == /filter-list-by-form.js ===================================================