MediaWiki:Gadget-exlinks.js

出典: フリー多機能辞典『ウィクショナリー日本語版(Wiktionary)』
ナビゲーションに移動 検索に移動

注意: 保存後、変更を確認するにはブラウザーのキャッシュを消去する必要がある場合があります。

  • Firefox / Safari: Shift を押しながら 再読み込み をクリックするか、Ctrl-F5 または Ctrl-R を押してください (Mac では ⌘-R)
  • Google Chrome: Ctrl-Shift-R を押してください (Mac では ⌘-Shift-R)
  • Internet Explorer / Microsoft Edge: Ctrl を押しながら 最新の情報に更新 をクリックするか、Ctrl-F5 を押してください
  • Opera: Ctrl-F5を押してください
// **********************************************************************
// **                 ***WARNING GLOBAL GADGET FILE***                 **
// **             changes to this file affect many users.              **
// **           please discuss on the talk page before editing         **
// **                                                                  **
// **********************************************************************
/**
 * @source mediawiki.org/wiki/Snippets/Open_external_links_in_new_window
 * @version 4
 */
mw.hook('wikipage.content').add(function($content) {
        $content.find('a.external').each(function () {
                // Can't use wgServer because it can be protocol relative
                // Use this.href property instead of this.getAttribute('href')  because the propery
                // is converted to a full URL (including protocol)
                if (this.href.indexOf(location.protocol + '//' + location.hostname) !== 0) {
                        this.target = '_blank';
                        if ( this.rel.indexOf( 'noopener' ) < 0 ) {
                            this.rel += ' noopener'; // the leading space matters, rel attributes have space-separated tokens
                        }
                        if ( this.rel.indexOf( 'noreferrer' ) < 0 ) {
                            this.rel += ' noreferrer'; // the leading space matters, rel attributes have space-separated tokens
                        }
                }
        });
});