「MediaWiki:Citizen.js」の版間の差分
MediaWikiインターフェイスページ
その他の操作
編集の要約なし |
編集の要約なし |
||
| 1行目: | 1行目: | ||
(function() { | (function() { | ||
console.log("Citizen.js loaded"); | console.log("Citizen.js loaded"); | ||
document.addEventListener("DOMContentLoaded", function() { | document.addEventListener("DOMContentLoaded", function() { | ||
var maps = document.querySelectorAll('.googlemap'); | var maps = document.querySelectorAll('.googlemap'); | ||
console.log("maps NodeList:", maps); | |||
alert("maps NodeList length: " + maps.length); | |||
maps.forEach(function(el, index){ | |||
console.log("Map element #" + index, el); | |||
alert("Map element #" + index + " found with data-coords: " + el.dataset.coords); | |||
}); | |||
}); | }); | ||
})(); | })(); | ||
2025年10月23日 (木) 20:15時点における版
(function() {
console.log("Citizen.js loaded");
document.addEventListener("DOMContentLoaded", function() {
var maps = document.querySelectorAll('.googlemap');
console.log("maps NodeList:", maps);
alert("maps NodeList length: " + maps.length);
maps.forEach(function(el, index){
console.log("Map element #" + index, el);
alert("Map element #" + index + " found with data-coords: " + el.dataset.coords);
});
});
})();