Flipline Studios Wiki
Advertisement

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.
/* Any JavaScript here will be loaded for all users on every page load. */

window.dev = window.dev || {};
 
window.dev.editSummaries = {
    select: 'Template:SummariesBrowse'
};
 
// AjaxRC
window.AjaxRCRefreshText = 'Auto-refresh';
window.AjaxRCRefreshHoverText = 'Automatically refreshes the page when new edits occur.';
window.ajaxPages = [
    "Special:RecentChanges",
    "Special:WikiActivity",
    "Special:Log",
    "Special:NewFiles",
    "Special:Videos",
    "Special:Contributions"
];

window.railWAM = {
    logPage:"Project:WAM Log"
};

function showPoll() {
    if ($.cookie(cookieName) === pollId) {
    }
}

$(function () {
    // src: https://fliplinestudios.fandom.com/wiki/MediaWiki:Common.js
    if (wgPageName == "Flipline Studios Wiki") {
        $('.pollAnswerVotes').hide();
 
        var cookieName = 'rs-mp-poll',
            pollId = ($('.ajax-poll').attr('id') || '').split('-')[2];
 
        $('.ajax-poll input[type="submit"]').click(function () {
            $.cookie(cookieName, pollId, {expires: 365});
            showPoll();
        });
 
        showPoll();
    }
});

//—————————————————————————————— ! ! ! ———————————————————————————————//
/* Import scripts. NOTE: Place scripts configurations above this line */
 
/* Imports located at MediaWiki:ImportJS */
Advertisement