Difference between revisions of "MediaWiki:Common.js"
Jump to navigation
Jump to search
(New table layout.) |
(Remove GA and Yandex.) |
||
| (3 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 ==================================================== | // == filter-list-by-form.js ==================================================== | ||
| Line 63: | Line 7: | ||
.then(function () { | .then(function () { | ||
const filterListByForm = new FilterListByForm('form.form-list-filter-js', 'table.form-list-filter-js tr.filterable'); | 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'); | + | const dataToContent = new DataToContent('table.form-list-filter-js tr', 'td.{key}'); |
}, function (e) { | }, function (e) { | ||
mw.log.error(e.message); | mw.log.error(e.message); | ||
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 ===================================================