From 9b42cafd9b4e76daeb87cf1dfb3021e8e6ecd178 Mon Sep 17 00:00:00 2001 From: alterdekim Date: Tue, 9 Jul 2024 04:12:15 +0300 Subject: [PATCH] json dialog parser fixed x4 --- src/main/resources/static/javascript/game.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/static/javascript/game.js b/src/main/resources/static/javascript/game.js index 7ef2c89..2444393 100644 --- a/src/main/resources/static/javascript/game.js +++ b/src/main/resources/static/javascript/game.js @@ -171,7 +171,7 @@ function showDialog(body) { let html_btns = ''; for(let i = 0; i < btns.length; i++) { let btn = btns[i]; - html_btns += '
'+btn.buttonText+'
'; + html_btns += '
'+btn.buttonText+'
'; } $("#twobtns").html(html_btns); }