Commit b74173c0 authored by Eric Duminil's avatar Eric Duminil
Browse files

Check checked inputs

parent c0816b26
...@@ -364,15 +364,12 @@ var regionChooser = (function(){ ...@@ -364,15 +364,12 @@ var regionChooser = (function(){
publicScope.clickety_click = function() { publicScope.clickety_click = function() {
console.log("You clicked pretty well"); console.log("You clicked pretty well");
var checkboxes = document.querySelectorAll("input.select_citygml"); var checkedBoxes = Array.from(document.querySelectorAll("input.select_citygml")).filter(x => x.checked);
if (checkboxes.length === 0){ if (checkedBoxes.length === 0){
//FIXME: Wrong. There are at least one checkbox.
console.log("You should select at least one citygml, though."); console.log("You should select at least one citygml, though.");
} else{ } else{
checkboxes.forEach(x => { checkedBoxes.forEach(x => {
if (x.checked){ console.log("Nice! You checked Citygml " + x.id)
console.log("Nice! You checked Citygml " + x.id)
}
}); });
} }
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment