Difference between revisions of "MediaWiki:Common.js"

From ZynthianWiki
Jump to navigation Jump to search
Line 5: Line 5:
 
   for (i in versions) {
 
   for (i in versions) {
 
     var v = versions[i]
 
     var v = versions[i]
     $("div.show_only_" + v).hide(delay);
+
     $(".show_only_" + v).hide(delay);
 
     $("#button_show_only_" + v).css("font-weight","normal");
 
     $("#button_show_only_" + v).css("font-weight","normal");
 
     //console.log("Hiding version " + v + "!!")
 
     //console.log("Hiding version " + v + "!!")
 
   }
 
   }
   $("div.show_only_" + ver).show(delay);
+
   $(".show_only_" + ver).show(delay);
 
   $("#button_show_only_" + ver).css("font-weight","bold");
 
   $("#button_show_only_" + ver).css("font-weight","bold");
 
   console.log("Showing version " + ver)
 
   console.log("Showing version " + ver)
Line 18: Line 18:
 
   for (i in branches) {
 
   for (i in branches) {
 
     var b = branches[i]
 
     var b = branches[i]
     $("div.show_only_" + b).hide(delay);
+
     $(".show_only_" + b).hide(delay);
 
     $("#button_show_only_" + b).css("font-weight","normal");
 
     $("#button_show_only_" + b).css("font-weight","normal");
 
     console.log("Hiding branch " + b + "!!")
 
     console.log("Hiding branch " + b + "!!")
 
   }
 
   }
   $("div.show_only_" + branch).show(delay);
+
   $(".show_only_" + branch).show(delay);
 
   $("#button_show_only_" + branch).css("font-weight","bold");
 
   $("#button_show_only_" + branch).css("font-weight","bold");
 
   console.log("Showing branch " + branch)
 
   console.log("Showing branch " + branch)

Revision as of 11:35, 27 July 2024

/* 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]
    $(".show_only_" + v).hide(delay);
    $("#button_show_only_" + v).css("font-weight","normal");
    //console.log("Hiding version " + v + "!!")
  }
  $(".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]
    $(".show_only_" + b).hide(delay);
    $("#button_show_only_" + b).css("font-weight","normal");
    console.log("Hiding branch " + b + "!!")
  }
  $(".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 */