From dbc7b4e7428f8df70ca88502b7294cc40e8cc923 Mon Sep 17 00:00:00 2001 From: Whykioh Date: Sun, 1 Mar 2026 19:52:21 +0100 Subject: [PATCH] Add player number tooltip --- poker-paf/config.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/poker-paf/config.php b/poker-paf/config.php index 96ec565..48c0a9f 100644 --- a/poker-paf/config.php +++ b/poker-paf/config.php @@ -27,7 +27,7 @@ require_once 'db.php';
- +

1

@@ -47,9 +47,11 @@ require_once 'db.php'; // 2. On crée une nouvelle ligne const newRow = document.createElement('div'); newRow.className = 'player-row'; + // 3. On met le HTML dedans (avec le bouton supprimer intégré) newRow.innerHTML = ` +

${container.children.length + 1}:

`;