Ir al contenido

Módulo:LinkSkype/doc

De Wikiviajes, la guía libre de viajes

Esta es la página de documentación de Módulo:LinkSkype

Version check

[editar]

Designación de la versión en Wikidata: 2023-12-08 Ok!

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( /\?.*$/, '' ) ) );
	});
}