「MediaWiki:Mobile.js」の版間の差分
ナビゲーションに移動
検索に移動
Karanemi666 (トーク | 投稿記録) (ページの作成:「→ここにある全てのJavaScriptはモバイル版サイトの利用者に影響します: $(function() { $('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…」) |
(相違点なし)
|
2025年8月24日 (日) 22:16時点における版
/* ここにある全てのJavaScriptはモバイル版サイトの利用者に影響します */ $(function() { $('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'); }); } }); });