User:Cheng chai fung/Editor/setup.js

维基百科,自由的百科全书

注意:保存之后,你必须清除浏览器缓存才能看到做出的更改。Google ChromeFirefoxMicrosoft EdgeSafari:按住⇧ Shift键并单击工具栏的“刷新”按钮。参阅Help:绕过浏览器缓存以获取更多帮助。

/** Setup ****************************************************
 *
 *  Description: setup.
 *
 */
if(typeof(EditorConfig) == 'undefined')
{
	var EditorConfig = new Object();
}

var showText = new Array();

$(add_editor_button);
function add_editor_button()
{
	// rawData.js
	if(EditorConfig.enableEditorRaw == true && wgNamespaceNumber >= 0)
	{
		create_EditorButton('editor-raw', '原始資料', '讀取原始資料', wgPageName, 'User:Cheng_chai_fung/Editor/rawData.js', 550, 450);
		showText['editor-raw'] = new Array('資料載入中…');
	}
	// welcome.js
	if(EditorConfig.enableEditorWelcome != false && wgNamespaceNumber == 3)
	{
		create_EditorButton('editor-welcome', '歡迎', '歡迎新用戶', '歡迎新用戶', 'User:Cheng_chai_fung/Editor/welcome.js', 550, 450);
		showText['editor-welcome'] = new Array('資料載入中…', '正在歡迎新用戶');
	}
}