Difference between revisions of "MediaWiki:Common.js"
Jump to navigation
Jump to search
old>Realpsojed (add simple collapsible js code, add simple descriptions for why we use js) |
old>Realpsojed (today I learned about mw-collapsible) |
||
Line 13: | Line 13: | ||
resizeAllTableImages(); | resizeAllTableImages(); | ||
}); | }); | ||
Revision as of 14:11, 2 May 2021
/* Any JavaScript here will be loaded for all users on every page load. */ // Make selected images twice the size, since the game does that function resizeAllTableImages() { const imgs = document.querySelectorAll(".image2x"); imgs.forEach(function(img) { img.width *= 2; img.height *= 2; }); } mw.hook('wikipage.content').add(function () { resizeAllTableImages(); });