MediaWiki:Minerva.js:修订间差异
RustedWiki更新姬(留言 | 贡献) 无编辑摘要 标签:已被回退 |
RustedWiki更新姬(留言 | 贡献) (撤销RustedWiki更新姬(讨论)的版本912) 标签:撤销 |
||
| 第5行: | 第5行: | ||
* License: CC BY-NC-SA 3.0 | * License: CC BY-NC-SA 3.0 | ||
*/ | */ | ||
mw.loader.using("jquery.makeCollapsible") | "use strict"; | ||
console.debug('jquery.makeCollapsible is loaded.'); | (function ($, mw) { | ||
$(function () { | |||
//Template:hide | |||
if ($(".mw-collapsible")[0]) { | |||
mw.loader.using("jquery.makeCollapsible").then(function () { | |||
//console.debug('jquery.makeCollapsible is loaded.'); | |||
$(".mw-collapsible").makeCollapsible(); | |||
}); | |||
} | |||
}); | |||
})(jQuery, mediaWiki); | |||
2021年7月29日 (四) 18:57的版本
/* 这里的任何JavaScript将只在移动端加载 */
/*
* Source: http://zh.moegirl.org.cn/MediaWiki:Common.js
* License: CC BY-NC-SA 3.0
*/
"use strict";
(function ($, mw) {
$(function () {
//Template:hide
if ($(".mw-collapsible")[0]) {
mw.loader.using("jquery.makeCollapsible").then(function () {
//console.debug('jquery.makeCollapsible is loaded.');
$(".mw-collapsible").makeCollapsible();
});
}
});
})(jQuery, mediaWiki);