dkforest

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

commit b8494cd9661f4942e369672d95574d4fb956f219
parent 6ba3d230fb48e3daaafc6eafcd70a2edf89ea757
Author: n0tr1v <n0tr1v@protonmail.com>
Date:   Tue,  5 Dec 2023 02:09:30 -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 @@ -507,7 +507,7 @@ func PokerSitHandler(c echo.Context) error { } func buildYourCardsHtml(authUser *database.User, g *PokerGame) string { - html := `<div style="position: absolute; top: 500px; left: 200px;"><div id="yourCard1"></div><div id="yourCard2"></div></div>` + html := `<div style="position: absolute; top: 450px; left: 200px;"><div id="yourCard1"></div><div id="yourCard2"></div></div>` if g.Ongoing != nil { cards := make([]PlayerCard, 0) for _, p := range g.Ongoing.Players {