MediaWiki:Mobile.js:修订间差异

来自NeuroWiki
跳转到导航 跳转到搜索
创建页面,内容为“→‎这里的任何JavaScript将为使用移动版网站的用户加载:​ $('.mw-collapsible'); if ($collapsibles.length) { mw.loader.using('jquery.makeCollapsible').then(function() { $collapsibles.makeCollapsible(); }); } });”
标签移动版编辑 移动版网页编辑
 
无编辑摘要
标签移动版编辑 移动版网页编辑
 
第1行: 第1行:
/* 这里的任何JavaScript将为使用移动版网站的用户加载 */
/* 这里的任何JavaScript将为使用移动版网站的用户加载 */
$('.mw-collapsible');
 
if ($collapsibles.length) {
/* All JavaScript here will be loaded for users of the MinervaNeue skin */
mw.loader.using('jquery.makeCollapsible').then(function() {
$(function () {
$collapsibles.makeCollapsible();
    // T111565
});
    var $collapsibles = $('.mw-collapsible');
}
    if ($collapsibles.length) {
        mw.loader.using('jquery.makeCollapsible').then(function() {
            $collapsibles.makeCollapsible();
        });
    }
});
});

2025年1月4日 (六) 02:59的最新版本

/* 这里的任何JavaScript将为使用移动版网站的用户加载 */

/* All JavaScript here will be loaded for users of the MinervaNeue skin */
$(function () {
    // T111565
    var $collapsibles = $('.mw-collapsible');
    if ($collapsibles.length) {
        mw.loader.using('jquery.makeCollapsible').then(function() {
            $collapsibles.makeCollapsible();
        });
    }
});