MediaWiki:Common.js
Note: After publishing, 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)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* Any JavaScript here will be loaded for all users on every page load. */ /* Hacky solution to invert images with transparent backgrounds in dark mode */ /*var elementToInvert = document.querySelector(".infobox-image > span");*/ /*elementToInvert.classList.add("mw-no-invert");*/ /* testing */ .style.display = 'none'; id="incidentInput" id="incidentCreate" id="productLineInput" id="productLineCreate" id="productInput" id="productCreate" id="companyInput" id="companyCreate" id="themeInput" id="themeCreate" document.getElementById("incidentInput").onclick = function() { document.getElementById("incidentCreate").style.display = 'block'; document.getElementById("productLineCreate").style.display = 'none'; document.getElementById("productCreate").style.display = 'none'; document.getElementById("companyCreate").style.display = 'none'; document.getElementById("themeCreate").style.display = 'none'; } document.getElementById("productLineInput").onclick = function() { document.getElementById("incidentCreate").style.display = 'none'; document.getElementById("productLineCreate").style.display = 'block'; document.getElementById("productCreate").style.display = 'none'; document.getElementById("companyCreate").style.display = 'none'; document.getElementById("themeCreate").style.display = 'none'; } document.getElementById("productInput").onclick = function() { document.getElementById("incidentCreate").style.display = 'none'; document.getElementById("productLineCreate").style.display = 'none'; document.getElementById("productCreate").style.display = 'block'; document.getElementById("companyCreate").style.display = 'none'; document.getElementById("themeCreate").style.display = 'none'; } document.getElementById("companyCreate").onclick = function() { document.getElementById("incidentCreate").style.display = 'block'; document.getElementById("productLineCreate").style.display = 'none'; document.getElementById("productCreate").style.display = 'none'; document.getElementById("companyCreate").style.display = 'block'; document.getElementById("themeCreate").style.display = 'none'; } document.getElementById("themeCreate").onclick = function() { document.getElementById("incidentCreate").style.display = 'block'; document.getElementById("productLineCreate").style.display = 'none'; document.getElementById("productCreate").style.display = 'none'; document.getElementById("companyCreate").style.display = 'none'; document.getElementById("themeCreate").style.display = 'block'; }