User:ArielGlenn/vector.js

From Wiktionary, the free dictionary
Jump to navigation Jump to search

Note – after saving, you may have to bypass your browser’s cache to see the changes.

  • Mozilla / Firefox / Safari: hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (Command-R on a Macintosh);
  • Konqueror and Chrome: click Reload or press F5;
  • Opera: clear the cache in Tools → Preferences;
  • Internet Explorer: hold Ctrl while clicking Refresh, or press Ctrl-F5.

This JavaScript is executed for ArielGlenn on every page load, when User:ArielGlenn is using the Vector skin.


if ( typeof $j != 'undefined' && typeof $.fn.wikiEditor != 'undefined' ) {
     $( document ).ready( function() {
	$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
		'sections':  {
			'local1': {
				'type': 'toolbar',
				'label': 'Personal'
			}
		}
        } );
 
	$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
		'section': 'local1',
		'groups': {
			'misc': { 'label': 'Various' }
		}
	} );
 
	$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
		'section': 'local1',
		'group': 'misc',
		'tools': {
			'NewGrcWord': {
				label: 'new_el_word',
				type: 'button',
				icon: 'http://upload.wikimedia.org/wikipedia/commons/5/5e/Button_API_%C9%91.png',
				action: {
					type: 'encapsulate',
					options: {
						pre: "==Greek==\n===Noun===\n\{{el-noun|f|plural}}\n* [[]]\n\n[[el:\{{subst:PAGENAME\}}\n" 
					}
				}
			}
		}
	} );
    } );
}