MediaWiki:Vector.js
Appearance
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* 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://koreanwikiproject.com/wiki/images/Underline_button.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://koreanwikiproject.com/wiki/images/Skyblue_font_button.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://koreanwikiproject.com/wiki/images/Pink_font_button.png',
action: {
type: 'encapsulate',
options: {
pre: "<font color=deeppink>",
post: "</font>"
}
}
}
}
} );
$j( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
'section': 'advanced',
'group': 'insert',
'tools': {
'Section': {
label: 'Insert TTMIK top template',
type: 'button',
icon: 'http://koreanwikiproject.com/wiki/images/TTMIK_icon_top.png',
action: {
type: 'encapsulate',
options: {
pre: "{{TTMIK Top}}",
post: ""
}
}
}
}
} );
$j( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
'section': 'advanced',
'group': 'insert',
'tools': {
'Pt': {
label: 'Insert TTMIK bottom template',
type: 'button',
icon: 'http://koreanwikiproject.com/wiki/images/TTMIK_icon_bottom.png',
action: {
type: 'encapsulate',
options: {
pre: "{{TTMIK bottom}}",
post: ""
}
}
}
}
} );
} );
}