summaryrefslogtreecommitdiff
path: root/play.js
diff options
context:
space:
mode:
Diffstat (limited to 'play.js')
-rw-r--r--play.js7
1 files changed, 3 insertions, 4 deletions
diff --git a/play.js b/play.js
index 3a0c7ec..6cb2fdc 100644
--- a/play.js
+++ b/play.js
@@ -465,10 +465,10 @@ function show_popup_menu(evt, menu_id, target_id, title) {
menu.style.left = x + "px"
menu.style.top = y + "px"
- return true
+ evt.stopPropagation()
+ } else {
+ menu.style.display = "none"
}
-
- return false
}
function hide_popup_menu() {
@@ -479,7 +479,6 @@ function on_card(evt) {
if (view.actions) {
let c = evt.target.id.split("+")[1] | 0;
show_popup_menu(evt, "popup", c, CARDS[c].title)
- evt.stopPropagation()
}
}