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

ナビゲーションに移動 検索に移動
編集の要約なし
編集の要約なし
タグ: モバイル編集 モバイルウェブ編集
編集の要約なし
タグ: モバイル編集 モバイルウェブ編集
 
1行目: 1行目:
/* ここにある全てのJavaScriptはモバイル版サイトの利用者に影響します */
/* ここにある全てのJavaScriptはモバイル版サイトの利用者に影響します */
mw.hook('mobileFrontend.content').add(function($content) {
    $content.find('section.collapsible-block').each(function() {
        var $section = $(this);
        if (!$section.hasClass('mw-collapsible')) {
            $section.addClass('mw-collapsible mw-collapsed');
            $section.wrapInner('<div class="mw-collapsible-content"></div>');
            var $heading = $section.prev('h1, h2');
            $heading.css('cursor','pointer').click(function() {
                $section.toggleClass('mw-collapsed');
            });
        }
    });
});

案内メニュー