Jump to content

MediaWiki:Common.js: Difference between revisions

From Verified Wikipedia
No edit summary
Tag: Reverted
Blanked the page
Tags: Blanking Manual revert Reverted
Line 1: Line 1:
// Remove stats panel on Create Account Page
mw.loader.using('mediawiki.util').then(function () {


    if (mw.config.get('wgCanonicalSpecialPageName') === 'CreateAccount') {
       
        function removePanel() {
            var box = document.querySelector('.mw-createacct-benefits-container');
            if (box) box.remove();
        }
        removePanel();
        setTimeout(removePanel, 500);
        setTimeout(removePanel, 1500);
        setTimeout(removePanel, 3000);
    }
});

Revision as of 14:40, 3 December 2025