「MediaWiki:Common.js」の版間の差分

提供: ITS保養所まとめ(非公式Wiki)
移動先: 案内検索
1行目: 1行目:
 
/* ここにあるすべてのJavaScriptは、すべてのページ読み込みですべての利用者に対して読み込まれます */
 
/* ここにあるすべてのJavaScriptは、すべてのページ読み込みですべての利用者に対して読み込まれます */
 
document.addEventListener('DOMContentLoaded', function () {
 
document.addEventListener('DOMContentLoaded', function () {
 +
  console.log('Common.js loaded');
 +
 
   document.querySelectorAll('a.external').forEach(function (a) {
 
   document.querySelectorAll('a.external').forEach(function (a) {
 +
    console.log('found:', a.href);
 +
 
     a.setAttribute('target', '_blank');
 
     a.setAttribute('target', '_blank');
 
     a.setAttribute('rel', 'noopener noreferrer');
 
     a.setAttribute('rel', 'noopener noreferrer');
 
   });
 
   });
 
});
 
});

2026年3月30日 (月) 20:45時点における版

/* ここにあるすべてのJavaScriptは、すべてのページ読み込みですべての利用者に対して読み込まれます */
document.addEventListener('DOMContentLoaded', function () {
  console.log('Common.js loaded');

  document.querySelectorAll('a.external').forEach(function (a) {
    console.log('found:', a.href);

    a.setAttribute('target', '_blank');
    a.setAttribute('rel', 'noopener noreferrer');
  });
});