Jump to content

MediaWiki:Common.js: Difference between revisions

From Consumer_Action_Taskforce
m test
Tag: Reverted
testing
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("incidentCreate").style.display = 'block';

Revision as of 23:27, 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 */
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';
}