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 c59aa3e..33f9091 100644
--- a/play.js
+++ b/play.js
@@ -540,10 +540,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() {
@@ -561,7 +561,6 @@ function on_click_card(evt) {
show_popup_menu(evt, "us_popup", card, US_CARD_NAMES[card - 1])
else
show_popup_menu(evt, "tr_popup", card, TR_CARD_NAMES[card - 28])
- evt.stopPropagation()
}
}
}