MediaWiki

Common.js: Difference between revisions

From Grouse House Wiki

No edit summary
No edit summary
Line 23: Line 23:
tocDestination.innerHTML = tocContents;
tocDestination.innerHTML = tocContents;
}
}
/* Links */
$( document ).ready( function() {
  $( '.c-header active' ).css( 'color', 'red' );
});

Revision as of 00:04, 3 February 2024

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

/* Collapsible headers */

var spoilersc = document.getElementsByClassName('spoilerButton');
    var j;

for (j = 0; j < spoilersc.length; j++) {
  spoilersc[j].addEventListener("click", function() {
    this.classList.toggle("active");
    var spoilercontent = this.nextElementSibling;
    if (spoilercontent.style.display === "block") {
      spoilercontent.style.display = "none";
    } else {
      spoilercontent.style.display = "block";
    }
  });
}

function moveTOC() {
var tocDestination = getElementById("s-toc-content");
var tocContents = getElementById("toc-content");
tocDestination.innerHTML = tocContents;
}

/* Links */

$( document ).ready( function() {
   $( '.c-header active' ).css( 'color', 'red' );
});