„MediaWiki:Common.js” változatai közötti eltérés
Jump to navigation
Nincs szerkesztési összefoglaló |
Öreg (vitalap | szerkesztései) Nincs szerkesztési összefoglaló |
||
(6 közbenső módosítás, amit 3 másik szerkesztő végzett, nincs mutatva) | |||
1. sor: | 1. sor: | ||
/* 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. */ | ||
document.write("<script src='/index.php?title=Global.js&action=raw&smaxage=0&ctype=text/javascript' type='text/javascript'></script>"); | /*document.write("<script src='/index.php?title=Global.js&action=raw&smaxage=0&ctype=text/javascript' type='text/javascript'></script>"); | ||
importScript_ = importScript | importScript_ = importScript | ||
54. sor: | 54. sor: | ||
console.log ("sidebar ready"); | console.log ("sidebar ready"); | ||
*/ | |||
. | |||
// Rewrite of announcement display. (by Menidan) | |||
$ (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) {} | |||
*/ | |||
}); | |||
// ? | |||
var importScript_ = importScript; |
A lap jelenlegi, 2019. szeptember 29., 13:21-kori változata
/* Any JavaScript here will be loaded for all users on every page load. */ /*document.write("<script src='/index.php?title=Global.js&action=raw&smaxage=0&ctype=text/javascript' type='text/javascript'></script>"); importScript_ = importScript // Makes the sidebar foldable (by Menidan) var sidebar_settings = JSON.parse (localStorage.getItem ("sidebar_settings")) || {}; function save_sidebar () { localStorage.setItem ("sidebar_settings", JSON.stringify (sidebar_settings)); } function set_sidebar (id, folded) { if (document.getElementById (id).parentElement.id != "column-one") return; if (folded) sidebar_settings [id] = true; else delete sidebar_settings [id]; save_sidebar (); } var fold = "http://wiki.de.grepolis.com/images/7/7e/Einklappen.png"; var unfold = "http://wiki.de.grepolis.com/images/0/06/Ausklappen.png"; function sidebar_click (node) { var content = $ (node.parentElement.lastElementChild); if (content.css ("display") == "none") { content.css ("display", "block"); node.firstElementChild.alt = "[-]"; node.firstElementChild.src = fold; set_sidebar (node.parentElement.id, false); } else { content.css ("display", "none"); node.firstElementChild.alt = "[+]"; node.firstElementChild.src = unfold; set_sidebar (node.parentElement.id, true); } return false; } var sidebar_links = $ ("#column-one .generated-sidebar.portlet h5").slice (1).replaceWith (function () { if (! sidebar_settings [this.parentElement.id]) return $ ('<a href="#" style="text-align:center"><img src="' + fold + '" style="float:left" alt="[-]" /><h5>' + this.innerHTML + '</h5></a>').click (function () { return sidebar_click (this); }); $ (this.nextElementSibling).css ("display", "none"); return $ ('<a href="#" style="text-align:center"><img src="' + unfold + '" style="float:left" alt="[+]" /><h5>' + this.innerHTML + '</h5></a>').click (function () { return sidebar_click (this); }); }); console.log ("sidebar ready"); */ // Rewrite of announcement display. (by Menidan) $ (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) {} */ }); // ? var importScript_ = importScript;