REMOVA OS ANÚNCIOS!
Apoiando através de https://apoia.se/arddhu a partir do tier de Apoiador, você pode navegar na wiki sem anúncios e ainda colabora com o projeto!
MediaWiki:Common.js: mudanças entre as edições
De Runarcana Wiki
Sem resumo de edição |
Sem resumo de edição |
||
Linha 18: | Linha 18: | ||
mw.hook('wikipage.content').add(debounce(function() { | mw.hook('wikipage.content').add(debounce(function() { | ||
var table = document.querySelector(". | var table = document.querySelector(".organize"); | ||
var rows = table.querySelectorAll("tr"); | var rows = table.querySelectorAll("tr"); | ||
var sortableRows = Array.prototype.slice.call(rows, 1); | var sortableRows = Array.prototype.slice.call(rows, 1); |
Edição das 02h48min de 12 de janeiro de 2023
/* Códigos JavaScript aqui colocados serão carregados por todos aqueles que acessarem alguma página deste wiki */ mw.loader.load( 'https://wiki.runarcana.org/util/ptoc.css', 'text/css' ); mw.loader.load( 'https://wiki.runarcana.org/util//ptoc.js', 'text/javascript' ); /* Tabela */ function debounce(func, wait) { var timeout; return function() { var context = this, args = arguments; clearTimeout(timeout); timeout = setTimeout(function () { timeout = null; func.apply(context, args); }, wait); }; } mw.hook('wikipage.content').add(debounce(function() { var table = document.querySelector(".organize"); var rows = table.querySelectorAll("tr"); var sortableRows = Array.prototype.slice.call(rows, 1); sortableRows.sort(function(a, b) { var aText = a.querySelector("td").textContent; var bText = b.querySelector("td").textContent; return aText.localeCompare(bText); }); table.innerHTML = ""; sortableRows.forEach(function(row) { table.appendChild(row); }); }, 250)); /* Lista */ $(document).ready(function() { $(".organiza_lista").each(function() { var list = $(this); var items = list.find("li"); items.sort(function(a, b) { return $(a).text().localeCompare($(b).text()); }); list.html(""); items.each(function() { list.append($(this)); }); }); });