MediaWiki:Common.js: Difference between revisions

Jump to navigation Jump to search
(Added code to auto-collapse Table of Contents.)
mNo edit summary
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. */


//collapse by default the TOC on opening of pages  
// Collapse by default the TOC on opening of pages  
function hideToc() {  
// The enclosed code runs only after the page has been loaded and parsed.
   var toc = document.getElementById('toc').getElementsByTagName('ul')[0];
window.addEventListener('DOMContentLoaded', function() {
  var toggleLink = document.getElementById('togglelink');
   try {
  toc.style.display = 'none';  
    // Detect whether the page's TOC is being displayed.
}  
    if (document.getElementById('toc').getElementsByTagName('ul')[0].style.display != 'none') {
hideToc();
      // Use MW's toggleToc() to hide TOC, change "hide/show" link text, and set cookie.
      toggleToc();
    }
  } catch (exception) {
    // Probably this page doesn't have a TOC, ignore the exception to prevent console clutter.
  }
}, false);

Revision as of 09:55, 3 April 2023

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

// Collapse by default the TOC on opening of pages 
// The enclosed code runs only after the page has been loaded and parsed.
window.addEventListener('DOMContentLoaded', function() {
  try {
    // Detect whether the page's TOC is being displayed.
    if (document.getElementById('toc').getElementsByTagName('ul')[0].style.display != 'none') {
      // Use MW's toggleToc() to hide TOC, change "hide/show" link text, and set cookie.
      toggleToc();
    }
  } catch (exception) {
    // Probably this page doesn't have a TOC, ignore the exception to prevent console clutter.
  }
}, false);