Community Central
Community Central

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)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
importArticles({
     type: "script",
     articles: [
         "w:c:dev:RevealAnonIP/usercode.js",
         "u:dev:PurgeButton/code.js",
         'w:c:dev:UserTags/code.js',
         'u:dev:AjaxDiff/code.js',
         'w:dev:WallGreetingButton/code.js',
         'u:dev:SkinSwitchButton/code.js',
         'u:dev:FastDelete/code.js',
         "u:dev:CategoryRenameAuto-update/code.js",
         "w:c:dev:MarkForDeletion/code.js",
         'u:dev:CustomButton/code.js',
         'u:dev:QuickTitle/code.js',
         'u:dev:MediaWiki:UTCClock/code.js',
     ]
 });

window.DisplayClockJS = '%2I:%2M:%2S %p %2d %{January;February;March;April;May;June;July;August;September;October;November;December}m %Y (UTC)';

// Handles special pages in monobook that that are "available only in Wikia skin" || Backlink: [[User:RansomTime/monobookSpecialPageHandler]]
var monobookSpecialPageHandler = function() {
    if (skin === "monobook") {
        if ((window.location.href.endsWith("Special:Chat")) ||
             (window.location.href.endsWith("Special:CSS")) ||
             (window.location.href.endsWith( "Special:InfoboxBuilder" )) ||
             (window.location.href.endsWith("Special:WikiFeatures"))) {
            window.location.href = window.location.href + "?useskin=oasis";
        }
        if (window.location.href.endsWith("Special:WikiActivity")) {
            window.location.href = "/wiki/Special:RecentChanges";
        }
    }
};
 
addOnloadHook(monobookSpecialPageHandler);