Utilisateur:Kghbln/vector.js

De Semantic MediaWiki - Sandbox

Note : après avoir enregistré vos modifications, il se peut que vous deviez forcer le rechargement complet du cache de votre navigateur pour voir les changements.

  • Firefox / Safari : maintenez la touche Maj (Shift) en cliquant sur le bouton Actualiser ou pressez Ctrl-F5 ou Ctrl-R (⌘-R sur un Mac).
  • Google Chrome : appuyez sur Ctrl-Maj-R (⌘-Shift-R sur un Mac).
  • Internet Explorer : maintenez la touche Ctrl en cliquant sur le bouton Actualiser ou pressez Ctrl-F5.
  • Opera : allez dans Menu → Settings (Opera → Préférences sur un Mac) et ensuite à Confidentialité et sécurité → Effacer les données d’exploration → Images et fichiers en cache.
// <nowiki>
var customizeToolbar = function () {
	
	/* Add a new group to an existing section */
	$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
		'section': 'advanced',
		'groups': {
			'templates': {
				/* 'label': 'Vorlagen' // or use labelMsg 'groups-templates-label' for a localized label -- no label required since this one is supposed to be a dropdown */
			}
		}
	} );

	/* Add a button to an existing group */
	$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
		section: 'advanced',
		group: 'format',
		tools: {
			"references": {
				label: 'Abschnitt Einzelnachweise hinzufügen',
				type: 'button',
				icon: '//upload.wikimedia.org/wikipedia/commons/thumb/3/32/OOjs_UI_icon_ref.svg/22px-OOjs_UI_icon_ref.svg.png',
				action: {
					type: 'encapsulate',
					options: {
						pre: "==Einzelnachweise==\n<references />",
						'ownline': true
					}
				}
			},
		}
	} );
	
	/* Add a dropdown menu to an existing group */
	$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
		section: 'advanced',
		group: 'templates',
		tools: {
			"templates": {
				label: 'Vorlagen',
				type: 'select',
				list: {
					'youtube' : {
						label: 'YouTube',
						action: {
							type: 'encapsulate',
							options: {
								pre: '{{YouTube |YouTube-Kennung }}'
							}
						}
					},
					'videor' : {
						label: 'Video (fremd)',
						action: {
							type: 'encapsulate',
							options: {
								pre: '{{Video |url=URL der Datei |width=425 |height=355 }}'
							}
						}
					},
					'videol' : {
						label: 'Video (eigen)',
						action: {
							type: 'encapsulate',
							options: {
								pre: '{{Video |name=Name URL der Datei |width=425 |height=355 }}'
							}
						}
					},
					'audior' : {
						label: 'Audio (fremd)',
						action: {
							type: 'encapsulate',
							options: {
								pre: '{{Audio |url=URL der Datei }}'
							}
						}
					},
					'audiol' : {
						label: 'Audio (eigen)',
						action: {
							type: 'encapsulate',
							options: {
								pre: '{{Audio |name=Name der Datei }}'
							}
						}
					},
				}
			}
		}
	} );
};

/* 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 ) {
	mw.loader.using( 'user.options' ).then( function () {
		// This can be the string "0" if the user disabled the preference ([[phab:T54542#555387]])
		if ( mw.user.options.get( 'usebetatoolbar' ) == 1 ) {
			$.when(
				mw.loader.using( 'ext.wikiEditor' ), $.ready
			).then( customizeToolbar );
		}
	} );
}
// </nowiki>
Les cookies nous aident à fournir nos services. En utilisant nos services, vous acceptez notre utilisation de cookies.