The Gold Network: Soyworld | SNCApedia | SoyPlace

User:Editor/common.js

From SNCApedia, the shit nobody cares about encyclopedia
Revision as of 20:08, 11 March 2026 by Editor (talk | contribs) (Created page with "// reserved for javascript tests //Mass rollback function //Written by Wikipedia:User:John254 //Adapted from User:Mr.Z-man/rollbackSummary.js //Instructions: Selecting the "rollback all" tab when viewing a user's contributions history //will open all rollback links displayed there. (Use with caution) jQuery(document).ready(function ($) { function rollbackEverything() { for (var i in document.links) { if (document.links[i].href.indexOf('acti...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
// reserved for javascript tests

//Mass rollback function
//Written by [[Wikipedia:User:John254]]
//Adapted from User:Mr.Z-man/rollbackSummary.js
//Instructions: Selecting the "rollback all" tab when viewing a user's contributions history
//will open all rollback links displayed there. (Use with caution)

jQuery(document).ready(function ($) {

    function rollbackEverything() {
        for (var i in document.links) {
            if (document.links[i].href.indexOf('action=rollback') != -1) {
                window.open(document.links[i].href);
            }
        }
    }

    function rollbackEverythingButton() {
        var hasRollback = $("span.mw-rollback-link");
        if (hasRollback[0] && (document.title.indexOf("User contributions") !== -1) ) {
            var link = mw.util.addPortletLink(
                'p-cactions',
                '#',
                'rollback all',
                'ca-rollbackeverything',
                'rollback all edits displayed here'
            );
            $(link).click(function (e) {
                e.preventDefault();
                rollbackEverything();
            });
        }
    }

    mw.loader.using(['mediawiki.util'], function() {
        rollbackEverythingButton();
    });

})