Gebruiker:Jos1950/common.js: verschil tussen versies

Uit LinuxMintNL WiKi
Ga naar: navigatie, zoeken
(Nieuw toolbar)
(SandBox)
 
(3 tussenliggende versies door dezelfde gebruiker niet weergegeven)
Regel 1: Regel 1:
var customizeToolbar = function() {
+
// install [[Wikipedia:User:Cacycle/wikEd]] in-browser text editor
/* Your code goes here */
+
importScriptURI('//en.wikipedia.org/w/index.php?title=User:Cacycle/wikEd.js'
};
+
+ '&action=raw&ctype=text/javascript');
   
+
 
/* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar . . . */
+
/**
if ( $.inArray( mw.config.get( 'wgAction' ), [ 'edit', 'submit' ] ) !== -1 ) {
+
* Add a "My sandbox" link to the personal portlet menu.
mw.loader.using( 'user.options', function () {
+
  *
// This can be the string "0" if the user disabled the preference ([[bugzilla:52542#c3]])
+
* Required modules: mediawiki.util, mediawiki.Title, mediawiki.Uri
if ( mw.user.options.get( 'usebetatoolbar' ) == 1 && mw.user.options.get( 'showtoolbar' ) == 1 ) {
+
*
$.when(
+
* @source https://www.mediawiki.org/wiki/Snippets/MySandbox
mw.loader.using( 'ext.wikiEditor.toolbar' ),
+
* @version 2014-07-16
$.ready
+
*/
).then( customizeToolbar );
+
( function ( mw, $ ) {
}
+
$( function () {
 +
var conf, title, url;
 +
 
 +
// Customize/Translate this to your needs
 +
conf = {
 +
subpageName: 'sandbox',
 +
portletLabel: 'Sandbox',
 +
portletTooltip: 'Go to your sandbox',
 +
editintroPagename: 'Template:User_sandbox',
 +
preloadPagename: 'Template:User_sandbox/preload'
 +
};
 +
// Don't alter the code below
 +
 
 +
// Use Special:MyPage (as opposed to mw.user.getName()) so that it
 +
// works for logged-out users as well.
 +
title = new mw.Title( 'Special:MyPage/' + conf.subpageName );
 +
 
 +
url = new mw.Uri( title.getUrl() );
 +
url.extend( {
 +
action: 'edit',
 +
redlink: 1,
 +
editintro: new mw.Title( conf.editintroPagename ),
 +
preload: new mw.Title( conf.preloadPagename )
 +
} );
 +
 
 +
mw.util.addPortletLink(
 +
'p-personal',
 +
url,
 +
conf.portletLabel,
 +
'pt-sandbox',
 +
conf.portletTooltip,
 +
null,
 +
'#pt-preferences'
 +
);
 
} );
 
} );
}
+
}( mediaWiki, jQuery ) );
// Add the customizations to LiquidThreads' edit toolbar, if available
 
mw.hook( 'ext.lqt.textareaCreated' ).add( customizeToolbar );
 

Huidige versie van 11 feb 2017 om 14:55

// install [[Wikipedia:User:Cacycle/wikEd]] in-browser text editor
importScriptURI('//en.wikipedia.org/w/index.php?title=User:Cacycle/wikEd.js'
+ '&action=raw&ctype=text/javascript');

/**
 * Add a "My sandbox" link to the personal portlet menu.
 *
 * Required modules: mediawiki.util, mediawiki.Title, mediawiki.Uri
 *
 * @source https://www.mediawiki.org/wiki/Snippets/MySandbox
 * @version 2014-07-16
 */
( function ( mw, $ ) {
	$( function () {
		var conf, title, url;

		// Customize/Translate this to your needs
		conf = {
			subpageName: 'sandbox',
			portletLabel: 'Sandbox',
			portletTooltip: 'Go to your sandbox',
			editintroPagename: 'Template:User_sandbox',
			preloadPagename: 'Template:User_sandbox/preload'
		};
		// Don't alter the code below

		// Use Special:MyPage (as opposed to mw.user.getName()) so that it
		// works for logged-out users as well.
		title = new mw.Title( 'Special:MyPage/' + conf.subpageName );

		url = new mw.Uri( title.getUrl() );
		url.extend( {
			action: 'edit',
			redlink: 1,
			editintro: new mw.Title( conf.editintroPagename ),
			preload: new mw.Title( conf.preloadPagename )
		} );

		mw.util.addPortletLink(
			'p-personal',
			url,
			conf.portletLabel,
			'pt-sandbox',
			conf.portletTooltip,
			null,
			'#pt-preferences'
		);
	} );
}( mediaWiki, jQuery ) );