MediaWiki:Common.js

De Aulas
Revisão de 23h21min de 24 de junho de 2020 por Admin (discussão | contribs)
(dif) ← Edição anterior | Revisão atual (dif) | Versão posterior → (dif)

Nota: Após salvar, você pode ter que limpar o "cache" do seu navegador para ver as alterações.

  • Firefox / Safari: Pressione Shift enquanto clica Recarregar, ou pressione Ctrl-F5 ou Ctrl-R (⌘-R no Mac)
  • Google Chrome: Pressione Ctrl-Shift-R (⌘-Shift-R no Mac)
  • Internet Explorer: PressioneCtrl enquanto clica Recarregar, ou Pressione Ctrl-F5
  • Opera: Vá para Menu → Configurações (Opera → Preferencias no Mac) e depois para Privacidade e Segurança → Limpar dados de navegação → Imagens e arquivos em cache.
var customizeToolbar = function () {

$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	'sections': {
		'atalhos': {
			'type': 'toolbar', 
			'label': 'Atalhos'
		}
	}
} );

$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	'section': 'atalhos',
	'groups': {
		'buttons': {
			'label': 'Atalhos'
		}
	}
} );

$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	'section': 'atalhos',
	'group': 'buttons',
	'tools': {
		'smile': {
			label: 'Code',
			type: 'button',
			icon: '//upload.wikimedia.org/wikipedia/commons/f/fe/Button_context.png',
			action: {
				type: 'encapsulate',
				options: {
                  			'pre': '<syntaxhighlight lang=',
                  			'peri': 'linguagem',
                  			'post': ' line>\n</syntaxhighlight>'
				}
			}
		}
	}
} );

$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	'section': 'atalhos',
	'group': 'buttons',
	'tools': {
		'smile': {
			label: 'Image',
			type: 'button',
			icon: '//upload.wikimedia.org/wikipedia/commons/b/b7/Button_nowcommons.png',
			action: {
				type: 'encapsulate',
				options: {
                  			'pre': '<center>[[Image:',
                  			'peri': 'imagem',
                  			'post': ']]</center>'
				}
			}
		}
	}
} );

$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	'section': 'atalhos',
	'group': 'buttons',
	'tools': {
		'smile': {
			label: 'Note',
			type: 'button',
			icon: '//upload.wikimedia.org/wikipedia/commons/0/03/Button_chapitre.png',
			action: {
				type: 'encapsulate',
				options: {
                  			'pre': '{{note|',
                  			'peri': 'put your text here.',
                  			'post': '}}'
				}
			}
		}
	}
} );

$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	'section': 'atalhos',
	'group': 'buttons',
	'tools': {
		'smile': {
			label: 'Tip',
			type: 'button',
			icon: '//upload.wikimedia.org/wikipedia/commons/e/e4/Warn2.png',
			action: {
				type: 'encapsulate',
				options: {
                  			'pre': '{{tip|',
                  			'peri': 'put your text here.',
                  			'post': '}}'
				}
			}
		}
	}
} );

$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
	'section': 'atalhos',
	'group': 'buttons',
	'tools': {
		'smile': {
			label: 'Warning',
			type: 'button',
			icon: '//upload.wikimedia.org/wikipedia/commons/8/84/Warn3.png',
			action: {
				type: 'encapsulate',
				options: {
                  			'pre': '{{warning|',
                  			'peri': 'put your text here.',
                  			'post': '}}'
				}
			}
		}
	}
} );

};

/* Check if view is in edit mode and that the required modules are available. Then, customize the toolbar … */
if ( $.inArray( mw.config.get( 'wgAction' ), [ 'edit', 'submit' ] ) !== -1 ) {
	mw.loader.using( 'user.options' ).then( function () {
		// This can be the string "0" if the user disabled the preference ([[phab:T54542#555387]])
		if ( mw.user.options.get( 'usebetatoolbar' ) == 1 ) {
			$.when(
				mw.loader.using( 'ext.wikiEditor' ), $.ready
			).then( customizeToolbar );
		}
	} );
}