Difference between revisions of "MediaWiki:Common.js"
Jump to navigation
Jump to search
old>Realpsojed |
Tag: Manual revert |
||
(6 intermediate revisions by 2 users not shown) | |||
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. */ | ||
// Make selected images twice the size, since the game does that | |||
function resizeAllTableImages() { | function resizeAllTableImages() { | ||
const imgs = document.querySelectorAll(".image2x"); | const imgs = document.querySelectorAll(".image2x"); | ||
Line 9: | Line 10: | ||
} | } | ||
mw.hook('wikipage.content').add(function () { | |||
resizeAllTableImages(); | resizeAllTableImages(); | ||
}; | }); |
Latest revision as of 22:12, 29 November 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(); });