« Utilisateur:Kghbln/vector.js » : différence entre les versions

De Semantic MediaWiki - Sandbox
Aucun résumé des modifications
Aucun résumé des modifications
Ligne 2 : Ligne 2 :
var customizeToolbar = function () {
var customizeToolbar = function () {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
'sections': {
'section': 'advanced',
'templates': {
'type': 'toolbar', // Can also be 'booklet'
'label': 'Vorlagen'
// or 'labelMsg': 'section-emoticons-label' for a localized label
}
}
} );
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
'section': 'templates',
'groups': {
'groups': {
'tools': {
'tools': {

Version du 27 juin 2019 à 18:07

// <nowiki>
var customizeToolbar = function () {
	$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
			'section': 'advanced',
			'groups': {
				'tools': {
					'label': 'Vorlagen' // or use labelMsg for a localized label, see above
			}
		}
	} );
	$('#wpTextbox1').wikiEditor('addToToolbar', {
		section: 'advanced',
		group: 'templates',
		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
					}
				}
			},
			"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.