MediaWiki:Common.js: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
Zeile 43: | Zeile 43: | ||
$('#wpTextbox1').wikiEditor('addToToolbar', { | $('#wpTextbox1').wikiEditor('addToToolbar', { | ||
section: 'koschwiki', group: 'briefspielbuttons', | section: 'koschwiki', group: 'briefspielbuttons', | ||
tools: { ' | tools: { 'briefspielbuttonsjahr': { label: 'Jahr ist', type: 'button', icon: '/images/Button_Jahrist.png', | ||
action: { type: 'encapsulate', options: { pre: " | action: { type: 'encapsulate', options: { pre: "Jahr ist::" | ||
} } } } }); | } } } } }); | ||
} | } |
Version vom 10. Oktober 2014, 05:51 Uhr
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 ); } ); } } ); }