MediaWiki:Gadget-exlinks.js: Difference between revisions

From VCSEwiki
Jump to navigation Jump to search
(Created page with "// ********************************************************************** // ** Udělátko umožňující otevírání externích odkazů v novém okně. ** // **...")
 
m (1 revision imported)
 
(No difference)

Latest revision as of 16:52, 31 August 2017

// **********************************************************************
// ** Udělátko umožňující otevírání externích odkazů v novém okně.     **
// **              Možno zapnout ve vlastních nastaveních              **
// **********************************************************************
/**
 * @source mediawiki.org/wiki/Snippets/Open_external_links_in_new_window
 * @version 5
 */
mw.hook('wikipage.content').add(function($content) {
	// Second selector is for external links in Parsoid HTML+RDFa output (bug 65243).
	$content.find('a.external, a[rel="mw:ExtLink"]').each(function () {
		// Can't use wgServer because it can be protocol relative
		// Use this.href property instead of this.getAttribute('href')  because the property
		// is converted to a full URL (including protocol)
		if (this.href.indexOf(location.protocol + '//' + location.hostname) !== 0) {
			this.target = '_blank';
		}
	});
});