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

提供:hkatou_Lab
ページの作成:「→‎ここにあるすべてのJavaScriptは、すべてのページ読み込みですべての利用者に対して読み込まれます: // Collapsible Table of Contents $(document).ready(function() { $('#toc > ul').hide(); $('#toc h2').click(function() { $(this).next().toggle(); }).css('cursor', 'pointer'); });」
(相違点なし)

2024年7月14日 (日) 10:23時点における版

/* ここにあるすべてのJavaScriptは、すべてのページ読み込みですべての利用者に対して読み込まれます */
// Collapsible Table of Contents
$(document).ready(function() {
    $('#toc > ul').hide();
    $('#toc h2').click(function() {
        $(this).next().toggle();
    }).css('cursor', 'pointer');
});