« MediaWiki:Common.css » : différence entre les versions

De wiki-spl
Aller à la navigation Aller à la recherche
Aucun résumé des modifications
Aucun résumé des modifications
Ligne 1 : Ligne 1 :
/* Le CSS placé ici sera appliqué à tous les habillages. */
/* Le CSS placé ici sera appliqué à tous les habillages. */


mw . util . addPortletLink ( 'p-personal' , '/w/index.php?title=Special:MyPage/sandbox&action=edit&preload=Template:User_sandbox/preload&editintro=Template:User_sandbox' , 'My sandbox' , 'pt-mysandbox' , 'Go à votre bac à sable' , null , '#pt-preferences' );
// First wait for mediawiki.util to load, and the page to be ready.
$.when( mw.loader.using( 'mediawiki.util' ), $.ready ).then( function () {
 
// General usage pattern:
// mw.util.addPortletLink( portletId, href, text /* Optional: , id, tooltip, accesskey, nextnode */ );
 
// Example: Add a link to mediawiki.org to the Tools area, above the "Special pages" link.
var newElement = mw.util.addPortletLink(
'p-tb',
'https://www.mediawiki.org/',
'Link to mediawiki.org',
't-mworg',
'Go to www.mediawiki.org',
'm',
'#t-specialpages'
);
 
// The old way of passing a DOM-node also works
mw.util.addPortletLink(
'p-tb',
'https://www.mediawiki.org/',
'Link to mediawiki.org',
't-mworg',
'Go to www.mediawiki.org',
'm',
document.getElementById( 't-specialpages' )
);
 
} );

Version du 2 janvier 2022 à 16:27

/* Le CSS placé ici sera appliqué à tous les habillages. */

// First wait for mediawiki.util to load, and the page to be ready.
$.when( mw.loader.using( 'mediawiki.util' ), $.ready ).then( function () { 

	// General usage pattern:
	// mw.util.addPortletLink( portletId, href, text /* Optional: , id, tooltip, accesskey, nextnode */ );

	// Example: Add a link to mediawiki.org to the Tools area, above the "Special pages" link.
	var newElement = mw.util.addPortletLink(
		'p-tb',
		'https://www.mediawiki.org/',
		'Link to mediawiki.org',
		't-mworg',
		'Go to www.mediawiki.org',
		'm',
		'#t-specialpages'
	);

	// The old way of passing a DOM-node also works
	mw.util.addPortletLink(
		'p-tb',
		'https://www.mediawiki.org/',
		'Link to mediawiki.org',
		't-mworg',
		'Go to www.mediawiki.org',	
		'm',
		document.getElementById( 't-specialpages' )
	);

} );