MediaWiki:Gadget-sc.js
Ocio: Daspò ver salvà, podaria esare neçesario snetare ła cache dal propio navegadore web par vedare i canbiamenti.
- Firefox / Safari: tegner strucà el boton de łe letare grande Shift e schiciare sora Ricarga, o se nò struca Ctrl-F5 o Ctrl-R (⌘-R so Mac)
- Google Chrome: strucare Ctrl-Shift-R (⌘-Shift-R so on Mac)
- Internet Explorer / Edge: tegner strucà el boton Ctrl e schiciare so Ajorna, o sinò Ctrl-F5
- Opera: Va in tel Menu → Inpostasion (Opera → Prefarense so on Mac) e pò in Privacy & sicuresa → Sneta dati del navegadore → Imajini e file in te ła cache.
/* SmallCaps */
if ( typeof $ != 'undefined' && typeof $.fn.wikiEditor != 'undefined' ) {$( function() {
$( '#wpTextbox1' ).wikiEditor( 'addToToolbar', {
'section': 'advanced',
'group': 'format',
'tools': {'smallcaps': {
label: 'Maiuscoleto (SmallCaps) [alt-shift-x]',
type: 'button',
icon: '//upload.wikimedia.org/wikipedia/commons/a/a2/SmallcapsButton.png',
action: {
type: 'callback',
execute: function(context) {
var t = selection();
var pos = t[0].length;
var words = t[1].split(' ');
var result = '{{Sc|';
for (var i = 0; i < words.length; i++) {
if (i > 0) {
result += ' ';
}
result += words[i].substring(0, 1).toUpperCase() + words[i].substring(1).toLowerCase();
}
result += '}}';
$('#wpTextbox1').val(t[0] + result + t[2]);
$('#wpTextbox1').textSelection( 'setSelection', { start: pos, end: pos + result.length } );
$('#wpTextbox1').focus();
}
}
}}});
$('[accesskey=x]').removeAttr('accesskey');
$('.wikiEditor-ui-toolbar [title="Maiuscoleto (SmallCaps) [alt-shift-x]"]').attr('accesskey', 'x');
});}