aboutsummaryrefslogtreecommitdiff
path: root/html
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fischer@muhq.space>2021-12-12 15:38:40 +0100
committerFlorian Fischer <florian.fischer@muhq.space>2021-12-12 15:38:40 +0100
commit7aef95bec87185caccda8a074fc72b9d13f890d6 (patch)
tree17a68df458a65e54b06f21f736e5132b208dc186 /html
parent7a19c4d1f0079279b1b530d720e3dc547a19a08f (diff)
downloadmuhqs-game-7aef95bec87185caccda8a074fc72b9d13f890d6.tar.gz
muhqs-game-7aef95bec87185caccda8a074fc72b9d13f890d6.zip
html/tools: rename map to xy
Diffstat (limited to 'html')
-rw-r--r--html/tools.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/html/tools.html b/html/tools.html
index 0d41d4fb..81f74d9b 100644
--- a/html/tools.html
+++ b/html/tools.html
@@ -154,9 +154,9 @@ body {
return false;
}
- document.getElementById("random_tile_from_map_form").onsubmit = function() {
- let x_input = document.getElementById('random_tile_from_map_x');
- let y_input = document.getElementById('random_tile_from_map_y');
+ document.getElementById("random_tile_from_xy_form").onsubmit = function() {
+ let x_input = document.getElementById('random_tile_from_x');
+ let y_input = document.getElementById('random_tile_from_y');
result.innerHTML = "Random tile: (x:" + randomInt(x_input.value)
+ ", y:" + randomInt(y_input.value) + ")";
return false;
@@ -190,11 +190,11 @@ Random number
</div>
<div>
-<form id="random_tile_from_map_form">
+<form id="random_tile_from_xy_form">
Random tile within
- <input id="random_tile_from_map_x" type="number"/>
- <input id="random_tile_from_map_y" type="number"/>
- <input id="random_tile_from_map_button" value="generate" type="submit">
+ <input id="random_tile_from_x" type="number"/>
+ <input id="random_tile_from_y" type="number"/>
+ <input id="random_tile_from_xy_button" value="generate" type="submit">
</form>
</div>