Bem-vindo à Club Penguin Wiki! Faça uma conta e junte-se à comunidade!
MediaWiki:Common.js
Ir para navegação
Ir para pesquisar
Nota: Após publicar, 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/Edge: PressioneCtrl enquanto clica Recarregar, ou Pressione Ctrl-F5
- Opera: Pressione Ctrl-F5.
/* Códigos JavaScript aqui colocados serão carregados por todos aqueles que acessarem alguma página deste wiki */
// source: https://en.wikipedia.org/wiki/MediaWiki:Common.js/edit.js
function addExtraButtons () {
mw.toolbar.addButtons(
{
imageId: 'button-strike',
imageFile: '//uploadimages.wikia.com/central/images/c/c9/Button_strike.png',
speedTip: 'Tachado',
tagOpen: '<s>',
tagClose: '</s>',
sampleText: 'Texto a ser tachado'
},
{
imageId: 'button-redirect',
imageFile: '//www.clubpenguinwiki.info/static/images/www/4/47/Button_redir.png',
speedTip: 'Redirecionar',
tagOpen: '#REDIRECIONAMENTO [[',
tagClose: ']]',
sampleText: 'Target page name'
},
{
imageId: 'button-highlight',
imageFile: '//www.clubpenguinwiki.info/static/images/www/3/31/HighlightButton.png',
speedTip: 'Destacar',
tagOpen: '<mark>',
tagClose: '</mark>',
sampleText: 'Texto a ser destacado aqui.'
},
{
imageId: 'button-small',
imageFile: '//www.clubpenguinwiki.info/static/images/www/8/8a/Smalltextbutton.PNG',
speedTip: 'Texto Pequeno',
tagOpen: '<small>',
tagClose: '</small>',
sampleText: 'Insira o texto aqui'
},
{
imageId: 'button-underline',
imageFile: '//www.clubpenguinwiki.info/static/images/www/f/fd/Button_underline.png',
speedTip: 'Sublinhar',
tagOpen: '<u>',
tagClose: '</u>',
sampleText: 'Insira o texto a ser sublinhado!'
}
);
}
mw.loader.using('user.options', function() {
// This can be the string "0" if the user disabled the preference ([[bugzilla:52542#c3]])
if (mw.user.options.get('usebetatoolbar') != 1 && mw.user.options.get('showtoolbar') == 1) {
$.when(
mw.loader.using('mediawiki.toolbar'),
$.ready
).then(addExtraButtons);
}
});