From 59a39036d6114b4cfc4ec06ded6287c23dc149f5 Mon Sep 17 00:00:00 2001 From: nicod_ <nicod@lerebooteux.fr> Date: Wed, 24 May 2023 18:38:02 +0200 Subject: [PATCH] =?UTF-8?q?R=C3=A9initialiser=20les=20events?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- javascript/gestion_listes_blocks.js.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/javascript/gestion_listes_blocks.js.html b/javascript/gestion_listes_blocks.js.html index 7139a4c..437437c 100644 --- a/javascript/gestion_listes_blocks.js.html +++ b/javascript/gestion_listes_blocks.js.html @@ -86,14 +86,14 @@ $(function() { function gestion_boutons_blocks() { // édition en place des blocs - $('.objet_blocks .actions .editer_block').on('click', function(e) { + $('.objet_blocks .actions .editer_block').off('click').on('click', function(e) { e.preventDefault(); var id_block = $(this).data('id_block'); ajaxReload('block_' + id_block, {args: {edit_bloc: 1}}); }); // boutons "Annuler" - $('.formulaire_editer_block button[name="annuler"]').on('click', function(e) { + $('.formulaire_editer_block button[name="annuler"]').off('click').on('click', function(e) { e.preventDefault(); var id_block = $(this).data('id_block'); ajaxReload('block_'+id_block); -- GitLab