Diferencia entre revisiones de «MediaWiki:Gadget-Biblia.js»
De EIFA - Estudios Interdisciplinares de las Fuentes Avilistas
Etiqueta: Revertido |
Etiqueta: Deshacer |
||
| Línea 11: | Línea 11: | ||
ve.init.target.getWikitextFragment( docRange, false ).done( function ( wikitext ) { | ve.init.target.getWikitextFragment( docRange, false ).done( function ( wikitext ) { | ||
model. | model.getFragment().insertContent([ | ||
{ | |||
type: 'mwTransclusionInline', | |||
attributes: { | |||
mw: { | |||
parts: [{ | |||
template: { | |||
target: { | |||
href: 'Template:Biblia', | |||
wt: 'Biblia' | |||
}, | |||
params: { | |||
1: { | |||
wt: wikitext | |||
} | |||
} | |||
} | |||
}] | |||
} | |||
} | |||
} , { | |||
type: '/mwTransclusionInline' | |||
} ] ); | |||
} ); | } ); | ||
}; | }; | ||
Revisión del 18:58 2 ene 2023
ve.ui.BibliaCommand = function VeUiBibliaCommand() {
ve.ui.BibliaCommand.super.call( this, 'Biblia' );
};
OO.inheritClass( ve.ui.BibliaCommand, ve.ui.Command );
ve.ui.BibliaCommand.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:Biblia',
wt: 'Biblia'
},
params: {
1: {
wt: wikitext
}
}
}
}]
}
}
} , {
type: '/mwTransclusionInline'
} ] );
} );
};
ve.ui.commandRegistry.register( new ve.ui.BibliaCommand() );
ve.ui.BibliaTool = function VeUiBibliaTool() {
ve.ui.BibliaTool.super.apply( this, arguments );
};
OO.inheritClass( ve.ui.BibliaTool, ve.ui.Tool );
ve.ui.BibliaTool.static.name = 'Biblia';
ve.ui.BibliaTool.static.group = 'utility';
ve.ui.BibliaTool.static.icon = 'book';
ve.ui.BibliaTool.static.title = 'Biblia';
ve.ui.BibliaTool.static.commandName = 'Biblia';
ve.ui.toolFactory.register( ve.ui.BibliaTool );