From c1e92a93746613965bf534572d84d95a7c2f6826 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Fri, 28 Mar 2025 19:28:49 +0100 Subject: Show medallion text tip on log mouseover too. --- play.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/play.js b/play.js index 5bd18fa..a7d8ce7 100644 --- a/play.js +++ b/play.js @@ -623,10 +623,12 @@ function on_focus_card_tip(x) { } function on_focus_medallion_tip(x) { + ui.status.textContent = data.medallions[x].name + ": " + data.medallions[x].tooltip ui.tooltip.className = "pink token medallion medallion_" + x } function on_blur_tip(x) { + ui.status.textContent = "" ui.tooltip.className = "hide" } -- cgit v1.2.3