home
·
contact
·
privacy
projects
/
plomrogue2
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
33adc21
)
Fix move keybinding input field disappearance.
author
Christian Heller
<c.heller@plomlompom.de>
Tue, 1 Dec 2020 00:01:00 +0000
(
01:01
+0100)
committer
Christian Heller
<c.heller@plomlompom.de>
Tue, 1 Dec 2020 00:01:00 +0000
(
01:01
+0100)
rogue_chat.html
patch
|
blob
|
history
diff --git
a/rogue_chat.html
b/rogue_chat.html
index 3825581359fa615777a3a6709479eb8ccbe593bf..ec619dedd826f56a1328cdb53e4606e649977332 100644
(file)
--- a/
rogue_chat.html
+++ b/
rogue_chat.html
@@
-643,6
+643,9
@@
let tui = {
}
};
for (const move_button of document.querySelectorAll('[id*="_move_"]')) {
+ if (move_button.id.startsWith('key_')) {
+ continue;
+ }
move_button.hidden = true;
};
for (const move_button of document.querySelectorAll('[id^="' + geometry_prefix + 'move_"]')) {