Diferencia entre revisiones de «MediaWiki:Gadget-Versalitas.js»

De EIFA - Estudios Interdisciplinares de las Fuentes Avilistas
Etiqueta: Revertido
 
(No se muestran 20 ediciones intermedias del mismo usuario)
Línea 1: Línea 1:
mw.loader.using( [ 'ext.visualEditor.mediawiki' ] ).then( function() {
ve.ui.VersalitasCommand = function VeUiVersalitasCommand() {
function addGroup( target ) {
ve.ui.VersalitasCommand.super.call( this, 'Versalitas' );
target.static.toolbarGroups.push( {
};
name: 'mytoolgroup',
OO.inheritClass( ve.ui.VersalitasCommand, ve.ui.Command );
label: 'My Group',
 
type: 'list',
ve.ui.VersalitasCommand.prototype.execute = function ( surface ) {
indicator: 'down',
var model = surface.getModel(),
include: [ { group: 'mytoolgroup' } ],
doc = model.getDocument(),
} );
range = model.getSelection().getRange(),
}
docRange = doc.shallowCloneFromRange( range );
for ( var n in ve.init.mw.targetFactory.registry ) {
 
addGroup( ve.init.mw.targetFactory.lookup( n ) );
ve.init.target.getWikitextFragment( docRange, false ).done( function ( wikitext ) {
}
model.getFragment().insertContent([
ve.init.mw.targetFactory.on( 'register', function ( name, target ) {
{
addGroup( target );
type: 'mwTransclusionInline',
attributes: {
mw: {
parts: [{
template: {
target: {
href: 'Template:Versales',
wt: 'Versales'
},
params: {
1: {
wt: wikitext
}
}
}
}]
}
}
} , {
type: '/mwTransclusionInline'
} ] );
} );
} );
} );
};
 
ve.ui.commandRegistry.register( new ve.ui.VersalitasCommand() );
 
ve.ui.VersalitasTool = function VeUiVersalitasTool() {
ve.ui.VersalitasTool.super.apply( this, arguments );
};
OO.inheritClass( ve.ui.VersalitasTool, ve.ui.Tool );
ve.ui.VersalitasTool.static.name = 'Versalitas';
ve.ui.VersalitasTool.static.group = 'textStyle';
ve.ui.VersalitasTool.static.icon = 'largerText';
ve.ui.VersalitasTool.static.title = 'Versalitas';
ve.ui.VersalitasTool.static.commandName = 'Versalitas';
ve.ui.toolFactory.register( ve.ui.VersalitasTool );

Revisión actual - 17:48 22 ene 2022

ve.ui.VersalitasCommand = function VeUiVersalitasCommand() {
	ve.ui.VersalitasCommand.super.call(	this, 'Versalitas' );
};
OO.inheritClass( ve.ui.VersalitasCommand, ve.ui.Command );

ve.ui.VersalitasCommand.prototype.execute = function ( surface ) {
	var model = surface.getModel(),
		doc = model.getDocument(),
		range = model.getSelection().getRange(),
		docRange = doc.shallowCloneFromRange( range );

	ve.init.target.getWikitextFragment( docRange, false ).done( function ( wikitext ) {
		model.getFragment().insertContent([
			{
				type: 'mwTransclusionInline',
				attributes: {
					mw: {
						parts: [{
							template: {
								target: {
									href: 'Template:Versales',
									wt: 'Versales'
								},
								params: {
									1: {
										wt: wikitext
									}
								}
							}
						}]
					}
				}
			} , {
				type: '/mwTransclusionInline'
			} ] );
	} );
};

ve.ui.commandRegistry.register( new ve.ui.VersalitasCommand() );

ve.ui.VersalitasTool = function VeUiVersalitasTool() {
	ve.ui.VersalitasTool.super.apply( this, arguments );
};
OO.inheritClass( ve.ui.VersalitasTool, ve.ui.Tool );
ve.ui.VersalitasTool.static.name = 'Versalitas';
ve.ui.VersalitasTool.static.group = 'textStyle';
ve.ui.VersalitasTool.static.icon = 'largerText';
ve.ui.VersalitasTool.static.title = 'Versalitas';
ve.ui.VersalitasTool.static.commandName = 'Versalitas';
ve.ui.toolFactory.register( ve.ui.VersalitasTool );