MediaWiki:Common.js

From ZynthianWiki
Revision as of 11:28, 27 July 2024 by Jofemodo (talk | contribs)
Jump to navigation Jump to search

Note: After saving, 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: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
/* Any JavaScript here will be loaded for all users on every page load. */

function show_only_version(ver, delay) {
  var versions = ["v5", "v4", "touch"];
  for (i in versions) {
    var v = versions[i]
    $("div.show_only_" + v).hide(delay);
    $("#button_show_only_" + v).css("font-weight","normal");
    //console.log("Hiding version " + v + "!!")
  }
  $("div.show_only_" + ver).show(delay);
  $("#button_show_only_" + ver).css("font-weight","bold");
  console.log("Showing version " + ver)
}

function show_only_branch(branch, delay) {
  var branches = ["stable", "testing"];
  for (i in branches) {
    var b = branches[i]
    $("div.show_only_" + b).hide(delay);
    $("#button_show_only_" + b).css("font-weight","normal");
    console.log("Hiding branch " + b + "!!")
  }
  $("div.show_only_" + branch).show(delay);
  $("#button_show_only_" + branch).css("font-weight","bold");
  console.log("Showing branch " + branch)
}

$(document).ready(function() {
  console.log("READY!! Running custom JS ...")

  $("#button_show_only_v5").click(function(){
    show_only_version("v5", 500)
  });
  $("#button_show_only_v4").click(function(){
    show_only_version("v4", 500)
  });
  $("#button_show_only_touch").click(function(){
    show_only_version("touch", 500)
  });

  $("#button_show_only_stable").click(function(){
    show_only_branch("stable", 500)
  });
  $("#button_show_only_testing").click(function(){
    show_only_branch("testing", 500)
  });

  show_only_version("v5", 0);
  show_only_branch("stable", 0);
});


/* Matomo */
var _paq = window._paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(["setDocumentTitle", document.domain + "/" + document.title]);
_paq.push(["setCookieDomain", "*.zynthian.org"]);
_paq.push(["setDomains", ["*.zynthian.org","*.blog.zynthian.org","*.discourse.zynthian.org","*.shop.zynthian.org","*.wiki.zynthian.org"]]);
_paq.push(["enableCrossDomainLinking"]);
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
  var u="https://matomo.evolus.net/";
  _paq.push(['setTrackerUrl', u+'matomo.php']);
  _paq.push(['setSiteId', '1']);
  var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
  g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
})();

/* End Matomo Code */