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
De Runarcana Wiki
Nota: Após publicar, você pode ter que limpar o "cache" do seu navegador para ver as alterações.
- Firefox / Safari: Pressione Shift enquanto clica Recarregar, ou pressione Ctrl-F5 ou Ctrl-R (⌘-R no Mac)
- Google Chrome: Pressione Ctrl-Shift-R (⌘-Shift-R no Mac)
- Internet Explorer/Edge: PressioneCtrl enquanto clica Recarregar, ou Pressione Ctrl-F5
- Opera: Pressione Ctrl-F5.
/* 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' ); $(document).ready(function() { var tables = document.getElementsByClassName("organize"); Array.prototype.forEach.call(tables, function(table) { var rows, switching, i, x, y, shouldSwitch; switching = true; /* Make a loop that will continue until no switching has been done: */ while (switching) { // start by saying: no switching is done: switching = false; rows = table.rows; /* Loop through all table rows (except the first, which contains table headers): */ for (i = 1; i < (rows.length - 1); i++) { // start by saying there should be no switching: shouldSwitch = false; /* Get the two elements you want to compare, one from current row and one from the next: */ x = rows[i].getElementsByTagName("TD")[0]; y = rows[i + 1].getElementsByTagName("TD")[0]; // check if the two rows should switch place: if (x.innerHTML.toLowerCase() > y.innerHTML.toLowerCase()) { // if so, mark as a switch and break the loop: shouldSwitch = true; break; } } if (shouldSwitch) { /* If a switch has been marked, make the switch and mark that a switch has been done: */ rows[i].parentNode.insertBefore(rows[i + 1], rows[i]); switching = true; } } }); }); mw.hook('wikipage.content').add(function(content) { var list = content.querySelector(".organiza_lista"); var items = list.querySelectorAll("li"); items = Array.prototype.slice.call(items); items.sort(function(a, b) { return a.textContent.localeCompare(b.textContent); }); list.innerHTML = ""; items.forEach(function(item) { list.appendChild(item); }); });