MediaWiki:Common.js
Zur Navigation springen
Zur Suche springen
Hinweis: Leere nach dem Veröffentlichen den Browser-Cache, um die Änderungen sehen zu können.
- Firefox/Safari: Umschalttaste drücken und gleichzeitig Aktualisieren anklicken oder entweder Strg+F5 oder Strg+R (⌘+R auf dem Mac) drücken
- Google Chrome: Umschalttaste+Strg+R (⌘+Umschalttaste+R auf dem Mac) drücken
- Internet Explorer/Edge: Strg+F5 drücken oder Strg drücken und gleichzeitig Aktualisieren anklicken
- Opera: Strg+F5
var customizeToolbar = function() { $('#wpTextbox1').wikiEditor('addToToolbar', { 'sections': { 'koschwiki': { 'type': 'toolbar', 'label': 'KoschWiki' } } } ); $('#wpTextbox1').wikiEditor('addToToolbar', { 'section': 'koschwiki', 'groups': { 'briefspielbuttons': { 'label': 'Briefspiel' } } } ); $('#wpTextbox1').wikiEditor('addToToolbar', { section: 'koschwiki', group: 'briefspielbuttons', tools: { 'briefspielbuttonshaupt': { label: 'Hautpdarsteller ist', type: 'button', icon: '/images/Button_Hauptdarstellerist.png', action: { type: 'encapsulate', options: { pre: "Hauptdarsteller ist::" } } } } }); $('#wpTextbox1').wikiEditor('addToToolbar', { section: 'koschwiki', group: 'briefspielbuttons', tools: { 'briefspielbuttonsneben': { label: 'Nebendarsteller ist', type: 'button', icon: '/images/Button_Nebendarstellerist.png', action: { type: 'encapsulate', options: { pre: "Nebendarsteller ist::" } } } } }); $('#wpTextbox1').wikiEditor('addToToolbar', { section: 'koschwiki', group: 'briefspielbuttons', tools: { 'briefspielbuttonsbrief': { label: 'Briefspieltext mit', type: 'button', icon: '/images/Button_Briefspieltextmit.png', action: { type: 'encapsulate', options: { pre: "Briefspieltext mit::" } } } } }); $('#wpTextbox1').wikiEditor('addToToolbar', { section: 'koschwiki', group: 'briefspielbuttons', tools: { 'briefspielbuttonsorthandl': { label: 'Handlungsort ist', type: 'button', icon: '/images/Button_Handlungsortist.png', action: { type: 'encapsulate', options: { pre: "Handlungsort ist::" } } } } }); $('#wpTextbox1').wikiEditor('addToToolbar', { section: 'koschwiki', group: 'briefspielbuttons', tools: { 'briefspielbuttonsortnenn': { label: 'Ortsnennung ist', type: 'button', icon: '/images/Button_Ortsnennungist.png', action: { type: 'encapsulate', options: { pre: "Ortsnennung ist::" } } } } }); $('#wpTextbox1').wikiEditor('addToToolbar', { section: 'koschwiki', group: 'briefspielbuttons', tools: { 'briefspielbuttonsjahr': { label: 'Jahr ist', type: 'button', icon: '/images/Button_Jahrist.png', action: { type: 'encapsulate', options: { pre: "Jahr ist::" } } } } }); } if ( $.inArray( mw.config.get( 'wgAction' ), ['edit', 'submit'] ) !== -1 ) { mw.loader.using( 'user.options', function () { if ( mw.user.options.get('usebetatoolbar') ) { mw.loader.using( 'ext.wikiEditor.toolbar', function () { $(document).ready( customizeToolbar ); } ); } } ); }