MediaWiki:Common.js: Difference between revisions
Appearance
No edit summary Tag: Reverted |
m test Tag: Reverted |
||
| Line 7: | Line 7: | ||
/* testing */ | /* 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("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'; | |||
} | |||
Revision as of 23:26, 31 January 2025
/* 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';
}