Difference between revisions of "MediaWiki:Common.js"
		
		
		
		
		
		Jump to navigation
		Jump to search
		
				
		
		
	
 (Created page with "→Any JavaScript here will be loaded for all users on every page load.:  function createTab() { 	addPortletLink( 'p-cactions', wgArticlePath.replace( '$1', 'Special:Log' ),...")  | 
				|||
| (8 intermediate revisions by the same user not shown) | |||
| 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. */  | ||
| − | function   | + | var conf = mw.config.get([  | 
| − | 	addPortletLink( 'p-  | + |     'wgCanonicalNamespace',  | 
| − | }  | + |     'wgTitle',  | 
| − | + |     'wgPageName'  | |
| + | ]);  | ||
| + | mw.loader.using( 'mediawiki.util', function () {  | ||
| + | 	mw.util.addPortletLink('p-views', mw.util.getUrl('Play_Now!', {page:conf.wgPageName}), 'Play Now!');  | ||
| + | });  | ||
Latest revision as of 18:20, 22 September 2017
/* Any JavaScript here will be loaded for all users on every page load. */
var conf = mw.config.get([
    'wgCanonicalNamespace',
    'wgTitle',
    'wgPageName'
]);
mw.loader.using( 'mediawiki.util', function () {
	mw.util.addPortletLink('p-views', mw.util.getUrl('Play_Now!', {page:conf.wgPageName}), 'Play Now!');
});