From 0363755f95fb26c141cbe293942dd78e5a8e4c9d Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Tue, 11 Jun 2024 23:37:23 +0200 Subject: player colors --- play.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'play.js') diff --git a/play.js b/play.js index fd5c7e1..baf7735 100644 --- a/play.js +++ b/play.js @@ -543,6 +543,27 @@ function on_click_card(evt) { /* LOG */ +function on_log(text) { + let p = document.createElement("div") + text = text.replace(/&/g, "&") + text = text.replace(//g, ">") + + if (text.startsWith("=t")) { + p.className = "h turn" + text = text.substring(2) + } else if (text.startsWith("=a")) { + p.className = "h america" + text = text.substring(3) + } else if (text.startsWith("=b")) { + p.className = "h britain" + text = text.substring(3) + } + + p.innerHTML = text + return p +} + /* OLD --- function on_log(text) { let p = document.createElement("div") -- cgit v1.2.3