From 8db27bf77db61c111543be229799dee259ce0b62 Mon Sep 17 00:00:00 2001 From: Jules Date: Thu, 4 Jun 2026 12:42:26 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20:=20clic=20btn-photostation=20ne=20d?= =?UTF-8?q?=C3=A9clenche=20plus=20la=20navigation=20vers=20mode?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Sonnet 4.6 --- frontend/js/app.js | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/js/app.js b/frontend/js/app.js index e934dae..ff7bdcc 100644 --- a/frontend/js/app.js +++ b/frontend/js/app.js @@ -131,6 +131,7 @@ function setupEcranAccueil() { // Toucher pour commencer (ignorer le bouton admin et le popup) accueil.addEventListener('click', (e) => { if (e.target.closest('.btn-admin')) return; + if (e.target.closest('.btn-photostation')) return; allerA('mode'); }); }