Järjestelmäviesti:Gadget-jwb.js

Wikipediasta
Siirry navigaatioon Siirry hakuun

Huomautus: Selaimen välimuisti pitää tyhjentää asetusten tallentamisen jälkeen, jotta muutokset tulisivat voimaan.

  • Firefox ja Safari: Napsauta Shift-näppäin pohjassa Päivitä, tai paina Ctrl-F5 tai Ctrl-R (⌘-R Macilla)
  • Google Chrome: Paina Ctrl-Shift-R (⌘-Shift-R Macilla)
  • Edge: Napsauta Ctrl-näppäin pohjassa Päivitä tai paina Ctrl-F5
mw.loader.using('mediawiki.user').then(function () {
    mw.user.getGroups().then(function (groups) {
        // List of groups to exclude
        var excludedGroups = ["arbcom", "bureaucrat", "checkuser", "checkuser-temporary-account-viewer", "interface-admin", "steward"];
        
        // Check if user is in any of the excluded groups
        var excludedGroup = groups.find(function (group) {
            return excludedGroups.includes(group);
        });

        if (!excludedGroup) {
            mw.loader.load('//en.wikipedia.org/w/index.php?title=User:Joeytje50/JWB.js/load.js&action=raw&ctype=text/javascript');
        } else {
            console.error('Gadget not loaded: User belongs to the excluded group "' + excludedGroup + '".');
        }
    });
});