MediaWiki:Vector.js

From Korean Wiki Project
Revision as of 15:19, 24 November 2010 by DigitalSoju (Talk | contribs)

Jump to: navigation, search

Note: After saving, 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)
  • Internet Explorer: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Clear the cache in Tools → Preferences
/* 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||}}{{Centrato||}}<section begin=1 /><section begin=1 />
if ( typeof $j != 'undefined' && typeof $j.fn.wikiEditor != 'undefined' ) {
	$j(document).ready( function() {
		$j( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
			'section': 'advanced',
			'group': 'format',
			'tools': {
				'Ac': {
					label: 'Insert sky blue font',
					type: 'button',
					icon: 'http://upload.wikimedia.org/wikipedia/commons/6/6d/Button_AC.png',
					action: {
						type: 'encapsulate',
						options: {
							pre: "hello",
							post: "what"
						}
					}
				}
			}
		} );
                $j( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
			'section': 'advanced',
			'group': 'format',
			'tools': {
				'Center': {
					label: 'Centra',
					type: 'button',
					icon: 'http://upload.wikimedia.org/wikipedia/commons/5/5f/Button_center.png',
					action: {
						type: 'encapsulate',
						options: {
							pre: "{{Centrato||",
							post: "}}"
						}
					}
				}
			}
		} ); 
                		$j( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
			'section': 'advanced',
			'group': 'format',
			'tools': {
				'Section': {
					label: 'Sezione',
					type: 'button',
					icon: 'http://upload.wikimedia.org/wikipedia/commons/4/44/Button_comillas_latinas.png',
					action: {
						type: 'encapsulate',
						options: {
							pre: "<section begin=1 />",
							post: "<section begin=1 />"
						}
					}
				}
			}
		} );
		$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: "}}"
						}
					}
				}
			}
		} );
 
	} );
}