MediaWiki:Common.js: differenze tra le versioni
Nessun oggetto della modifica |
Nessun oggetto della modifica |
||
Riga 16: | Riga 16: | ||
} | } | ||
} ); | } ); | ||
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { | |||
'section': 'emoticons', | |||
/* 'group': 'faces', */ | |||
'tools': { | |||
'smile': { | |||
label: 'Smile!', // or use labelMsg for a localized label, see above | |||
type: 'button', | |||
icon: 'http://upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Gnome-face-smile.svg/22px-Gnome-face-smile.svg.png', | |||
action: { | |||
type: 'encapsulate', | |||
options: { | |||
pre: ":)" // text to be inserted | |||
} | |||
} | |||
} | |||
} | |||
} ); | |||
$('#wpTextbox1').wikiEditor('removeFromToolbar', { | |||
'section': 'characters' | |||
}); | |||
}; | }; |
Versione delle 11:21, 20 giu 2012
/* Il codice JavaScript inserito qui viene caricato da ciascuna pagina, per tutti gli utenti. */ var customizeToolbar = function() { /* Your code goes here */ $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { 'sections': { 'emoticons': { 'type': 'toolbar', // Can also be 'booklet' 'label': 'Emoticons' // or 'labelMsg': 'section-emoticons-label' for a localized label } } } ); $( '#wpTextbox1' ).wikiEditor( 'addToToolbar', { 'section': 'emoticons', /* 'group': 'faces', */ 'tools': { 'smile': { label: 'Smile!', // or use labelMsg for a localized label, see above type: 'button', icon: 'http://upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Gnome-face-smile.svg/22px-Gnome-face-smile.svg.png', action: { type: 'encapsulate', options: { pre: ":)" // text to be inserted } } } } } ); $('#wpTextbox1').wikiEditor('removeFromToolbar', { 'section': 'characters' }); }; /* Check if we are in edit mode and the required modules are available and then customize the toolbar */ 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 ); } ); } } ); }