Difference between revisions of "MediaWiki:Common.js"
Jump to navigation
Jump to search
old>Realpsojed (testing automatic resize of image2x class) |
Tag: Manual revert |
||
| (8 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"); | ||
imgs.forEach((img) | imgs.forEach(function(img) { | ||
img.width *= 2; | img.width *= 2; | ||
img.height *= 2; | img.height *= 2; | ||
| Line 9: | Line 10: | ||
} | } | ||
mw.hook('wikipage.content').add(function () { | |||
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();
});