MediaWiki:Timeless.js: Difference between revisions

From AlternateWiki
Content deleted Content added
No edit summary
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* All JavaScript here will be loaded for users of the Timeless skin */
/* All JavaScript here will be loaded for users of the Timeless skin */
document.querySelectorAll('.extiw').forEach(el => el.classList.remove('extiw'));
document.querySelectorAll('.extiw').forEach(function(el) {
el.classList.remove('extiw');
console.log("TEST TEST")
});

Latest revision as of 15:52, 10 July 2024

/* All JavaScript here will be loaded for users of the Timeless skin */
document.querySelectorAll('.extiw').forEach(function(el) {
    el.classList.remove('extiw');
});