Jump to content

MediaWiki:Common.js: Difference between revisions

From Worldpedia, the free encyclopedia
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. */
mw.loader.using('mediawiki.util').done(function () {
    if (window.matchMedia("(max-width: 768px)").matches) {
        var infobox = document.querySelector('.infobox');
        var content = document.querySelector('.content');
        if (infobox && content) {
            content.parentNode.insertBefore(content, infobox.nextSibling);
        }
    }
});

Revision as of 01:23, 27 February 2025

/* Any JavaScript here will be loaded for all users on every page load. */
mw.loader.using('mediawiki.util').done(function () {
    if (window.matchMedia("(max-width: 768px)").matches) {
        var infobox = document.querySelector('.infobox');
        var content = document.querySelector('.content');
        if (infobox && content) {
            content.parentNode.insertBefore(content, infobox.nextSibling);
        }
    }
});