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' ); /* Tabela */ $( document ).ready( function() { mw.loader.using( 'oojs-ui-core' ).then( function () { var sortTable = function () { var $table = $( '.organize:not(.wikitable)' ); var $rows = $table.find( 'tr' ); $rows.sort( function( a, b ) { var keyA = $(a).find( 'td' ).text().toUpperCase(); var keyB = $(b).find( 'td' ).text().toUpperCase(); if ( keyA < keyB ) return -1; if ( keyA > keyB ) return 1; return 0; }); $table.append( $rows ); }; OO.ui.throttle(sortTable, 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)); }); }); });