今天是2024年11月18日 第47周 星期一

代人,时大变了。

我们生活在大地上,但我们的梦想超越天空。

MediaWiki:Mobile.js/edit.js

来自Akarin
跳到导航 跳到搜索

注意:在保存之后,您可能需要清除浏览器缓存才能看到所作出的变更的影响。

  • Firefox或Safari:按住Shift的同时单击刷新,或按Ctrl-F5Ctrl-R(Mac为⌘-R
  • Google Chrome:Ctrl-Shift-R(Mac为⌘-Shift-R
  • Internet Explorer:按住Ctrl的同时单击刷新,或按Ctrl-F5
  • Opera:前往菜单 → 设置(Mac为Opera → Preferences),然后隐私和安全 → 清除浏览数据 → 缓存的图片和文件
/* 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; }');
			}
		}
	}
});