MediaWiki:Vector.js: Difference between revisions
Appearance
DigitalSoju (talk | contribs) No edit summary |
DigitalSoju (talk | contribs) No edit summary |
||
| Line 15: | Line 15: | ||
'tools': { | 'tools': { | ||
'Ac': { | 'Ac': { | ||
label: ' | label: 'Underline text', | ||
type: 'button', | type: 'button', | ||
icon: 'http://upload.wikimedia.org/wikipedia/commons/6/6d/Button_AC.png', | icon: 'http://upload.wikimedia.org/wikipedia/commons/6/6d/Button_AC.png', | ||
| Line 21: | Line 21: | ||
type: 'encapsulate', | type: 'encapsulate', | ||
options: { | options: { | ||
pre: "< | pre: "<u>", | ||
post: "</ | post: "</u>" | ||
} | } | ||
} | } | ||
| Line 33: | Line 33: | ||
'tools': { | 'tools': { | ||
'Center': { | 'Center': { | ||
label: ' | label: 'Skyblue font', | ||
type: 'button', | type: 'button', | ||
icon: 'http://upload.wikimedia.org/wikipedia/commons/5/5f/Button_center.png', | icon: 'http://upload.wikimedia.org/wikipedia/commons/5/5f/Button_center.png', | ||
| Line 39: | Line 39: | ||
type: 'encapsulate', | type: 'encapsulate', | ||
options: { | options: { | ||
pre: " | pre: "<font color=DeepSkyBlue>", | ||
post: " | post: "</font>" | ||
} | } | ||
} | } | ||
| Line 51: | Line 51: | ||
'tools': { | 'tools': { | ||
'Section': { | 'Section': { | ||
label: ' | label: 'Pink font', | ||
type: 'button', | type: 'button', | ||
icon: 'http://upload.wikimedia.org/wikipedia/commons/4/44/Button_comillas_latinas.png', | icon: 'http://upload.wikimedia.org/wikipedia/commons/4/44/Button_comillas_latinas.png', | ||
| Line 57: | Line 57: | ||
type: 'encapsulate', | type: 'encapsulate', | ||
options: { | options: { | ||
pre: "< | pre: "<font color=deeppink>", | ||
post: "< | post: "</font>" | ||
} | } | ||
} | } | ||
Revision as of 13:30, 24 November 2010
/* Any JavaScript here will be loaded for users using the Vector skin */
// <pre>
//SAL
//inc("Utente:IPork/SAL.js");
// PULSANTI ADDIZIONALI per skin Vector :-)
// AutoreCitato: confronta codice sotto con vecchia versione per monobook. La funzione è autonoma,
// non richiede il caricamento di altri script!
if ( typeof $j != 'undefined' && typeof $j.fn.wikiEditor != 'undefined' ) {
$j(document).ready( function() {
$j( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
'section': 'advanced',
'group': 'format',
'tools': {
'Ac': {
label: 'Underline text',
type: 'button',
icon: 'http://upload.wikimedia.org/wikipedia/commons/6/6d/Button_AC.png',
action: {
type: 'encapsulate',
options: {
pre: "<u>",
post: "</u>"
}
}
}
}
} );
$j( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
'section': 'advanced',
'group': 'format',
'tools': {
'Center': {
label: 'Skyblue font',
type: 'button',
icon: 'http://upload.wikimedia.org/wikipedia/commons/5/5f/Button_center.png',
action: {
type: 'encapsulate',
options: {
pre: "<font color=DeepSkyBlue>",
post: "</font>"
}
}
}
}
} );
$j( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
'section': 'advanced',
'group': 'format',
'tools': {
'Section': {
label: 'Pink font',
type: 'button',
icon: 'http://upload.wikimedia.org/wikipedia/commons/4/44/Button_comillas_latinas.png',
action: {
type: 'encapsulate',
options: {
pre: "<font color=deeppink>",
post: "</font>"
}
}
}
}
} );
$j( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
'section': 'advanced',
'group': 'format',
'tools': {
'Pt': {
label: 'Pt',
type: 'button',
icon: 'http://upload.wikimedia.org/wikipedia/commons/4/4b/Button_class_text.png',
action: {
type: 'encapsulate',
options: {
pre: "{{pt||",
post: "}}"
}
}
}
}
} );
} );
}