Saltu al enhavo

Modulo:LinkSkype/dokumentado

El Vikivojaĝo

Tio estas la paĝo de la dokumentado por Modulo:LinkSkype

This modul is not used any longer because the Skype service was stopped.

Versiokontrolo

[redakti]

Versionomo en Vikidatumoj: 2023-12-08 Ok!

JavaScript

[redakti]

To show the Skype links a JavaScript script is necessary:

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