MediaWiki:Common.js: Difference between revisions
Agros urbe non clamaten
No edit summary |
No edit summary |
||
Line 6: | Line 6: | ||
if (mw.config.get('wgPageName') === 'Wiki_Visualized') { | if (mw.config.get('wgPageName') === 'Wiki_Visualized') { | ||
console.log | console.log('found page'); | ||
// Your custom JavaScript code here | // Your custom JavaScript code here | ||
} | } | ||
}); | }); | ||
}); | }); |
Revision as of 00:23, 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 if (mw.config.get('wgPageName') === 'Wiki_Visualized') { console.log('found page'); // Your custom JavaScript code here } }); });