From 8fb1cbd2cde33016e557da722c7cc856fe091b9c Mon Sep 17 00:00:00 2001 From: alterdekim Date: Tue, 9 Jul 2024 04:08:51 +0300 Subject: [PATCH] json dialog parser fixed x2 --- 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 358ee19..5db1747 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); }