Difference between revisions of "MediaWiki:Common.js"

From SEGGER Wiki
Jump to: navigation, search
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
/* 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. */
   
/* Add icons to expandable entries in TOC */
 
//$(document).ready(function(){
 
// $('#toc li a').each(function(a,b){
 
// var numSiblings = $(this).siblings('ul:hidden').size();
 
// if (numSiblings > 0) {
 
// $(this).before(' <span class="toggleicon">[]</span> ');
 
// updateIcons();
 
// }
 
// });
 
//});
 
   
  +
/* Matomo */
  +
//<script>
  +
var _paq = window._paq = window._paq || [];
  +
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
  +
_paq.push(['trackPageView']);
  +
_paq.push(['enableLinkTracking']);
  +
(function() {
  +
var u="https://t.segger.com/";
  +
_paq.push(['setTrackerUrl', u+'matomo.php']);
  +
_paq.push(['setSiteId', '7']);
  +
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);
  +
})();
  +
//</script>
  +
/* End Matomo Code */
  +
  +
  +
  +
/* Add icons to expandable entries in TOC */
  +
$(document).ready(function(){
  +
$('#toc li a').each(function(a,b){
  +
var numSiblings = $(this).siblings('ul:hidden').size();
  +
if (numSiblings > 0) {
  +
$(this).before(' <span class="toggleicon">[]</span> ');
  +
updateIcons();
  +
}
  +
});
   
//$('#toc span.toggleicon').click(function(){
+
$('#toc span.toggleicon').click(function(){
// $(this).siblings('ul').toggle({
+
$(this).siblings('ul').toggle({
// duration: 200,
+
duration: 200,
// complete: updateIcons
+
complete: updateIcons
// });
+
});
//});
+
});
  +
});
   
   
//function updateIcons() {
+
function updateIcons() {
// $('#toc span.toggleicon').each(function(){
+
$('#toc span.toggleicon').each(function(){
// if ($(this).siblings('ul').first().is(':hidden')) {
+
if ($(this).siblings('ul').first().is(':hidden')) {
// $(this).html('[&plus;]');
+
$(this).html('[&plus;]');
// } else {
+
} else {
// $(this).html('[&minus;]');
+
$(this).html('[&minus;]');
// }
+
}
// })
+
})
//}
+
}
  +
/* Add icons to expandable entries in TOC - End */

Latest revision as of 11:53, 10 October 2023

/* Any JavaScript here will be loaded for all users on every page load. */


/* Matomo */
//<script>
  var _paq = window._paq = window._paq || [];
  /* tracker methods like "setCustomDimension" should be called before "trackPageView" */
  _paq.push(['trackPageView']);
  _paq.push(['enableLinkTracking']);
  (function() {
    var u="https://t.segger.com/";
    _paq.push(['setTrackerUrl', u+'matomo.php']);
    _paq.push(['setSiteId', '7']);
    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);
  })();
//</script>
/* End Matomo Code */



/* Add icons to expandable entries in TOC */
$(document).ready(function(){
  $('#toc li a').each(function(a,b){
    var numSiblings = $(this).siblings('ul:hidden').size();
    if (numSiblings > 0) {
      $(this).before(' <span class="toggleicon">[]</span> ');
      updateIcons();
    }
  });

  $('#toc span.toggleicon').click(function(){
    $(this).siblings('ul').toggle({
      duration: 200,
      complete: updateIcons
    });
  });
});


function updateIcons() {
  $('#toc span.toggleicon').each(function(){
    if ($(this).siblings('ul').first().is(':hidden')) {
      $(this).html('[&plus;]');
    } else {
      $(this).html('[&minus;]');
    }
  })
}
/* Add icons to expandable entries in TOC - End */