「MediaWiki:Common.js」の版間の差分

提供:sufeeWiki
ナビゲーションに移動 検索に移動
編集の要約なし
編集の要約なし
2行目: 2行目:
mw.loader.using( ['mediawiki.util'], function () {
mw.loader.using( ['mediawiki.util'], function () {
function addInitialize(){
function addInitialize(){
const body = document.getElementsByTagName("body")[0];
try{
const bodyScript_data = {
const body = document.getElementsByTagName("body")[0];
"id":"myScript-mw-script",
const bodyScript_data = {
"element":"div",
"id":"myScript-mw-script",
"display":"none",
"element":"div",
"display":"none",
};
const bodyScript = document.createElement(bodyScript_data.element);
bodyScript.id = bodyScript_data.id;
bodyScript.style.display = bodyScript_data.display;
body.innerHTML += bodyScritpt;
}catch(err){
console.log(err);
}
}
const bodyScript = document.createElement(bodyScript_data.element);
bodyScript.id = bodyScript_data.id;
bodyScript.style.display = bodyScript_data.display;
body.innerHTML += bodyScritpt;
}
}
function getList(doc){
function getList(doc){
const item = [];
try{
if(doc != undefined){
const item = [];
const temp = doc.getElementsByTagName("li");
if(doc != undefined){
for(let index in temp){
const temp = doc.getElementsByTagName("li");
item.push(temp[index]);
for(let index in temp){
item.push(temp[index]);
}
}
}
if(item.length >= 1){
return item;
}
return null;
}catch(err){
console.log(err);
return null;
}
}
if(item.length >= 1){
return item;
}
return null;
}
}
30行目: 39行目:
const addScriptFile = getList(document.getElementById("Script-files"));
const addScriptFile = getList(document.getElementById("Script-files"));
const addCSSFile = getList(document.getElementById("CSS-files"));
const addCSSFile = getList(document.getElementById("CSS-files"));
if(addScriptFile != null){
//if(addScriptFile != null){
;
// ;
}
//}
});
});

2022年1月26日 (水) 17:20時点における版

/* ここにあるすべてのJavaScriptは、すべてのページ読み込みですべての利用者に対して読み込まれます */
mw.loader.using( ['mediawiki.util'], function () {
	function addInitialize(){
		try{
			const body = document.getElementsByTagName("body")[0];
			const bodyScript_data = {
				"id":"myScript-mw-script",
				"element":"div",
				"display":"none",
			};
			const bodyScript = document.createElement(bodyScript_data.element);
			bodyScript.id = bodyScript_data.id;
			bodyScript.style.display = bodyScript_data.display;
			body.innerHTML += bodyScritpt;
		}catch(err){
			console.log(err);
		}
	}
	function getList(doc){
		try{
			const item = [];
			if(doc != undefined){
				const temp = doc.getElementsByTagName("li");
				for(let index in temp){
					item.push(temp[index]);
				}
			}
			if(item.length >= 1){
				return item;
			}
			return null;
		}catch(err){
			console.log(err);
			return null;
		}
	}
	
	addInitialize();
	const addScriptFile = getList(document.getElementById("Script-files"));
	const addCSSFile = getList(document.getElementById("CSS-files"));
	//if(addScriptFile != null){
	//	;
	//}
});