From fcbe6a7a3c4745ac65bca73fc931c4905301e15b Mon Sep 17 00:00:00 2001 From: Cedric Date: Sun, 21 Jun 2026 14:11:02 +0200 Subject: [PATCH] Actualiser js/admin.js --- js/admin.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/js/admin.js b/js/admin.js index 435b454..74cc682 100644 --- a/js/admin.js +++ b/js/admin.js @@ -80,14 +80,6 @@ document.addEventListener('DOMContentLoaded', () => { }); function initEventListeners() { - const physicalCheckbox = document.getElementById('admin-physical-checkbox'); - if (physicalCheckbox) { - physicalCheckbox.addEventListener('change', (e) => { - adminPhysicalOnlyFilter = e.target.checked; - currentPage = 1; - renderAdminTable(); - }); - } const filmForm = document.getElementById('film-form'); if (filmForm) filmForm.addEventListener('submit', saveFilmForm);