Módulo:LinkSkype/doc
Apariencia
Esta es la página de documentación de Módulo:LinkSkype
Version check
[editar]Uso
[editar]This module provides links to Skype addresses.
It is no longer used
JavaScript
[editar]Se requiere un script de JavaScript para mostrar los enlaces:
/**
Support of Skype links. Skype protocol is not supported by the
Mediawiki software, and the link is to be added later
*/
function addSkypeLinks() {
$( '.listing-skype-link' ).each( function() {
var p = $( this ),
t = p.text();
p.html( mw.format( '<a href="skype:$1">$2</a>', t, t.replace( /\?.*$/, '' ) ) );
});
}