MediaWiki:Common.js: Difference between revisions

Agros urbe non clamaten
No edit summary
No edit summary
Line 4: Line 4:
     $(document).ready(function () {
     $(document).ready(function () {
         // Check the current page title
         // Check the current page title
        console.log(mw.config.get('wgPageName'));
         if (mw.config.get('wgPageName') === 'Wiki_Visualized') {
         if (mw.config.get('wgPageName') === 'Wiki_Visualized') {
             console.log(mw.config.get('wgPageName'));
              
             // Your custom JavaScript code here
             // Your custom JavaScript code here
         }
         }
     });
     });
});
});

Revision as of 00:20, 23 November 2024

/* Any JavaScript here will be loaded for all users on every page load. */

mw.loader.using('mediawiki.util', function () {
    $(document).ready(function () {
        // Check the current page title
        console.log(mw.config.get('wgPageName')); 
        if (mw.config.get('wgPageName') === 'Wiki_Visualized') {
            
            // Your custom JavaScript code here
        }
    });
});