MediaWiki:Common.js: Forskelle mellem versioner

Fra Wiki Grepolis DK
Hop til navigation
(Erstatter sidens indhold med "===Common.js=== →‎Any JavaScript here will be loaded for all users on every page load.: // Old Global.js. // Rewrite of announcement display. $ (function () {...")
Tag: Erstattet
No edit summary
Linje 1: Linje 1:
===Common.js===
/* Any JavaScript here will be loaded for all users on every page load. */
/* Any JavaScript here will be loaded for all users on every page load. */
// Old Global.js.
// Old Global.js.

Versionen fra 27. jun. 2020, 09:07

/* Any JavaScript here will be loaded for all users on every page load. */
// Old Global.js.
// Rewrite of announcement display.
$ (function () {
    // Changes the announcement to the next announcement in the list.
    function changeAnnouncement () {
        $ (announcementList [currentAnnouncement]).fadeOut ("normal", function () {
            ++currentAnnouncement;
            if (currentAnnouncement >= announcementList.length)
                currentAnnouncement = 0;
            $ (announcementList [currentAnnouncement]).fadeIn ();
        });
    }

var announcementList = $ (".announcement");
var currentAnnouncement = 0;
var announcementVisibilityTime = 5000; // ms

announcementList.hide ();
if (announcementList.length > 1) {
    $ (announcementList [0]).fadeIn ();
    setInterval (changeAnnouncement, announcementVisibilityTime);
} else if (announcementList.length > 0)
    announcementList.fadeIn ();


// Piwik is undefined -> comment it out.
/*
try {
    var piwikTracker = Piwik.getTracker (pkBaseURL + "piwik.php", 2);
    piwikTracker.trackPageView ();
    piwikTracker.enableLinkTracking ();
} catch (err) {}
*/
});