From a3a3053986e81caa11d9b94116ff3eb10c597287 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Tue, 16 Jul 2019 08:42:10 +0200 Subject: [PATCH] misc: attach kebab menu event to main content (#34406) (so the page contents can be reloaded) --- gadjo/static/js/gadjo.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gadjo/static/js/gadjo.js b/gadjo/static/js/gadjo.js index 03cd4bd..c996459 100644 --- a/gadjo/static/js/gadjo.js +++ b/gadjo/static/js/gadjo.js @@ -381,7 +381,7 @@ var gadjo_js = gadjo_js || {}; } }); $(function() { - $('a.extra-actions-menu-opener').on('click', function() { + $('#main-content').on('click', 'a.extra-actions-menu-opener', function() { $(this).toggleClass('open'); $('.extra-actions-menu').toggleClass('open'); });