Difference between revisions of "MediaWiki:Common.js"

From Stoneshard wiki
Jump to navigation Jump to search
Tag: Reverted
Tag: Manual revert
 
Line 13: Line 13:
     resizeAllTableImages();
     resizeAllTableImages();
});
});
mw.loader.load( '/wiki/index.php?title=MediaWiki:Tooltip.js&action=raw&ctype=text/javascript' );

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();
});