「MediaWiki:Common.js」の版間の差分
ナビゲーションに移動
検索に移動
Sufee Admin (トーク | 投稿記録) 編集の要約なし |
Sufee Admin (トーク | 投稿記録) 編集の要約なし |
||
1行目: | 1行目: | ||
/* ここにあるすべてのJavaScriptは、すべてのページ読み込みですべての利用者に対して読み込まれます */ | /* ここにあるすべてのJavaScriptは、すべてのページ読み込みですべての利用者に対して読み込まれます */ | ||
mw.loader.using(['mediawiki.util'], function (){ | mw.loader.using(['mediawiki.util'], function (){ | ||
function addInitialize(){ | function pageConfig(){ | ||
function addInitialize(){ | |||
const body = document.getElementsByTagName("body")[0]; | |||
try{ | |||
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.appendChild(bodyScript); | |||
}catch(err){ | |||
console.log(err); | |||
} | |||
try{ | |||
const bodyCSS_data = { | |||
"id":"myScript-mw-css", | |||
"element":"div", | |||
"display":"none", | |||
}; | |||
const bodyCss = document.createElement(bodyCSS_data.element); | |||
bodyCss.id = bodyCSS_data.id; | |||
bodyCss.style.display = bodyCSS_data.display; | |||
body.appendChild(bodyCss); | |||
}catch(err){ | |||
console.log(err); | |||
} | |||
} | } | ||
function getList(doc){ | |||
try{ | |||
const item = []; | |||
if(doc != null){ | |||
const temp = doc.getElementsByTagName("li"); | |||
if(temp != null){ | |||
for(var i = 0 , l = temp.length;i < l;i++){ | |||
item[i] = temp[i].innerText; | |||
} | |||
} | } | ||
} | } | ||
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")); | |||
console.log(addScriptFile); | |||
//if(addScriptFile != null){ | |||
// ; | |||
//} | |||
} | } | ||
pageConfig(); | |||
}); | }); |
2022年1月26日 (水) 18:46時点における版
/* ここにあるすべてのJavaScriptは、すべてのページ読み込みですべての利用者に対して読み込まれます */
mw.loader.using(['mediawiki.util'], function (){
function pageConfig(){
function addInitialize(){
const body = document.getElementsByTagName("body")[0];
try{
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.appendChild(bodyScript);
}catch(err){
console.log(err);
}
try{
const bodyCSS_data = {
"id":"myScript-mw-css",
"element":"div",
"display":"none",
};
const bodyCss = document.createElement(bodyCSS_data.element);
bodyCss.id = bodyCSS_data.id;
bodyCss.style.display = bodyCSS_data.display;
body.appendChild(bodyCss);
}catch(err){
console.log(err);
}
}
function getList(doc){
try{
const item = [];
if(doc != null){
const temp = doc.getElementsByTagName("li");
if(temp != null){
for(var i = 0 , l = temp.length;i < l;i++){
item[i] = temp[i].innerText;
}
}
}
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"));
console.log(addScriptFile);
//if(addScriptFile != null){
// ;
//}
}
pageConfig();
});