添加400字节
、 2020年8月1日 (六) 23:37
/* Any JavaScript here will be loaded for users using the mobile site */
$(function() {
//在提交新段落時,讓主題欄在特定情況下失效
if ($('#no-new-title').length) {
if ($('#editform input[name=wpSection]').val() === 'new') {
// 手機版文本編輯器
if (mw.config.get('skin') === 'minerva') {
mw.util.addCSS('#wpSummaryLabel { display: none; }');
}
}
}
});