削除された内容 追加された内容
m update; copy from enwiki: http://en.wikipedia.org/w/index.php?title=MediaWiki:Gadget-exlinks.js&oldid=454073119
Frozen-mikan (会話 | 投稿記録)
5行目:
// ** **
// **********************************************************************
/**
* @source mediawiki.org/wiki/Snippets/Open_external_links_in_new_window
$( function() {
* @version 5
var $alinks = mw.util.$content.find( 'a' );
*/
$alinks.each( function() {
mw.hook('wikipage.content').add(function($content) {
var $tablink = $( this );
// Second selector is for external links in Parsoid HTML+RDFa output (bug 65243).
if ( $tablink.hasClass( 'external' ) && $tablink.attr( 'href' ).indexOf( mw.config.get( 'wgServer' ) ) !== 0 ) {
$content.find('a.external, a[rel="mw:ExtLink"]').each(function () {
$tablink.attr( 'target', '_blank' );
// 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) {
$tablinkthis.attr( 'target', = '_blank' );
}
});