More actions
No edit summary |
No edit summary Tag: Reverted |
||
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. */ | ||
document.addEventListener('DOMContentLoaded', function () { | |||
var infoboxes = document.querySelectorAll('.portable-infobox.noexcerpt.pi-background.pi-theme-default.pi-layout-stacked'); | |||
infoboxes.forEach(function (infobox) { | |||
infobox.classList.remove('pi-layout-stacked'); | |||
}); | |||
}); |
Revision as of 02:12, 11 May 2024
/* Any JavaScript here will be loaded for all users on every page load. */ document.addEventListener('DOMContentLoaded', function () { var infoboxes = document.querySelectorAll('.portable-infobox.noexcerpt.pi-background.pi-theme-default.pi-layout-stacked'); infoboxes.forEach(function (infobox) { infobox.classList.remove('pi-layout-stacked'); }); });