diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-10-21 19:33:08 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-10-21 19:37:45 +0200 |
commit | 1947f2232adf98d39a224690a86bac533da88d9f (patch) | |
tree | 991f1255a0e88f5c699eb5896eddebdfd2870305 /play.js | |
parent | 2fb32d05f97b6787c5a01f209cc1791395e76bfe (diff) | |
download | wilderness-war-1947f2232adf98d39a224690a86bac533da88d9f.tar.gz |
fix popup menu
Diffstat (limited to 'play.js')
-rw-r--r-- | play.js | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -755,10 +755,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() { @@ -785,7 +785,6 @@ function on_click_card(evt) { send_action('card', card) } else { show_popup_menu(evt, "popup", card, cards[card].name) - evt.stopPropagation() } } |