dkforest

A forum and chat platform (onion)
git clone https://git.dasho.dev/n0tr1v/dkforest.git
Log | Files | Refs | LICENSE

commit 5194ca4e1012f9c4ea943b9ee321cf1e83557ad7
parent 6d6e61c7d6ffc6211e575e467d2ec0fd7469f2c9
Author: n0tr1v <n0tr1v@protonmail.com>
Date:   Sat, 23 Dec 2023 23:54:38 -0500

cleanup

Diffstat:
Mpkg/web/handlers/poker.go | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pkg/web/handlers/poker.go b/pkg/web/handlers/poker.go @@ -500,7 +500,7 @@ func PokerBetHandler(c echo.Context) error { } send(`<form method="post" id="actionsForm">`) send(` <div style="display: inline-block; margin-right: 20px;">`) - send(fmt.Sprintf(`<input type="number" name="raiseValue" value="%s" min="%s" style="width: 90px;" /><button type="submit" name="raise" value="raiseValue" style="width: 51px;">%s</button><br />`, minRaise, minRaise, betBtnLbl)) + send(fmt.Sprintf(`<input type="number" name="raiseValue" value="%s" min="%s" style="width: 90px; -moz-appearance:textfield;" /><button type="submit" name="raise" value="raiseValue" style="width: 51px;">%s</button><br />`, minRaise, minRaise, betBtnLbl)) send(` </div>`) send(` <div style="display: inline-block; vertical-align: top;">`) send(fmt.Sprintf(`<button name="submitBtn" value="check" %s>Check</button>`, utils.Ternary(canCheck, "", "disabled")))