「MediaWiki:Common.js」の版間の差分
ナビゲーションに移動
検索に移動
Sufee Admin (トーク | 投稿記録) 編集の要約なし |
Sufee Admin (トーク | 投稿記録) 編集の要約なし |
||
9行目: | 9行目: | ||
"display":"none", | "display":"none", | ||
}; | }; | ||
let bodyScript = document.createElement(bodyScript_data.element); | |||
bodyScript.id = bodyScript_data.id; | bodyScript.id = bodyScript_data.id; | ||
bodyScript.style.display = bodyScript_data.display; | bodyScript.style.display = bodyScript_data.display; | ||
body. | body.appendChild(bodyScritpt); | ||
}catch(err){ | }catch(err){ | ||
console.log(err); | console.log(err); |
2022年1月26日 (水) 17:32時点における版
/* ここにあるすべての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",
};
let bodyScript = document.createElement(bodyScript_data.element);
bodyScript.id = bodyScript_data.id;
bodyScript.style.display = bodyScript_data.display;
body.appendChild(bodyScritpt);
}catch(err){
console.log(err);
}
}
function getList(doc){
try{
const item = [];
if(doc != undefined){
const temp = doc.getElementsByTagName("li");
//for(let index = 0;index < temp.length;index++){
// 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){
// ;
//}
});