「MediaWiki:Vector.js」の版間の差分
MediaWikiインターフェイスページ
その他の操作
編集の要約なし |
編集の要約なし |
||
| 1行目: | 1行目: | ||
/* ここに記述した JavaScript は、Vector 外装の利用者に読み込まれます */ | /* ここに記述した JavaScript は、Vector 外装の利用者に読み込まれます */ | ||
const element = document.getElementById('mw-content-subtitle'); | |||
$(function() { | |||
const element = document.getElementById('mw-content-subtitle'); | |||
if (element) { | if (element) { | ||
| 7行目: | 9行目: | ||
element.textContent = ''; | element.textContent = ''; | ||
} | } | ||
}); | |||
2025年8月8日 (金) 10:00時点における版
/* ここに記述した JavaScript は、Vector 外装の利用者に読み込まれます */
$(function() {
const element = document.getElementById('mw-content-subtitle');
if (element) {
element.textContent = '';
}
});