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 4: Linha 4:
mw.loader.load( 'https://wiki.runarcana.org/util//ptoc.js', 'text/javascript' );
mw.loader.load( 'https://wiki.runarcana.org/util//ptoc.js', 'text/javascript' );


$(document).ready(function() {
mw.hook('wikipage.content').add(OO.ui.throttle(function() {
     var tables = document.getElementsByClassName("organize");
     var table = document.querySelector(".organize");
     Array.prototype.forEach.call(tables, function(table) {
     var rows = table.querySelectorAll("tr");
        var rows, switching, i, x, y, shouldSwitch;
    var sortableRows = Array.prototype.slice.call(rows, 1);
        switching = true;
    sortableRows.sort(function(a, b) {
        /* Make a loop that will continue until
        var aText = a.querySelector("td").textContent;
        no switching has been done: */
        var bText = b.querySelector("td").textContent;
        while (switching) {
        return aText.localeCompare(bText);
            // 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;
            }
        }
     });
     });
});
    table.innerHTML = "";
    sortableRows.forEach(function(row) {
        table.appendChild(row);
    });
}, 250));





Edição das 02h44min 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' );

mw.hook('wikipage.content').add(OO.ui.throttle(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));


$(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));
        });
    });
});