MediaWiki:Common.js: Difference between revisions
No edit summary |
(Adds datatable loader) |
||
Line 10: | Line 10: | ||
$(function () { | $(function () { | ||
// document.querySelector('.CategoryTreeSection [href="/view/Category:Dungeon_Variants"').parentElement.parentElement.remove(); | // document.querySelector('.CategoryTreeSection [href="/view/Category:Dungeon_Variants"').parentElement.parentElement.remove(); | ||
document.querySelectorAll('.datatable').forEach((node) => { | |||
const headerClone = node.querySelector('tr').cloneNode(true); | |||
const thead = document.createElement('thead'); | |||
thead.appendChild(headerClone); | |||
node.prepend(thead); | |||
new DataTable(node); | |||
node.querySelector('tbody tr').remove() | |||
}); | |||
// Remove generated subcategories if page has a CategoryTree | // Remove generated subcategories if page has a CategoryTree |
Revision as of 19:26, 26 October 2023
/* Any JavaScript here will be loaded for all users on every page load. */ function importPage(name, type) { return mw.loader.load( '/index.php?title=' + name + '&action=raw&ctype=' + type, type ); } function importScript(name) { return importPage(name, 'text/javascript'); } importScript('MediaWiki:DynamicNav.js'); $(function () { // document.querySelector('.CategoryTreeSection [href="/view/Category:Dungeon_Variants"').parentElement.parentElement.remove(); document.querySelectorAll('.datatable').forEach((node) => { const headerClone = node.querySelector('tr').cloneNode(true); const thead = document.createElement('thead'); thead.appendChild(headerClone); node.prepend(thead); new DataTable(node); node.querySelector('tbody tr').remove() }); // Remove generated subcategories if page has a CategoryTree setTimeout(function() { const cat = document.querySelector('.CategoryTreeTag'); console.log('Checking to remove gened subcats', cat); if (!cat) document.querySelector('.mw-category-generated').style.display = "block"; }, 120); }());