From abf0548ca495852730a147486b5cfde6cb85a619 Mon Sep 17 00:00:00 2001 From: friedPotat0 <5374007+friedPotat0@users.noreply.github.com> Date: Sat, 27 Jul 2019 17:14:56 +0200 Subject: [PATCH] Prevent event propagation for footable toggle --- data/web/js/site/quarantine.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/data/web/js/site/quarantine.js b/data/web/js/site/quarantine.js index 9d762f2c..d0dfc5aa 100644 --- a/data/web/js/site/quarantine.js +++ b/data/web/js/site/quarantine.js @@ -114,6 +114,10 @@ jQuery(function($){ }); }); + $('table tbody').on('click', 'span.footable-toggle', function () { + event.stopPropagation(); + }) + // Initial table drawings draw_quarantine_table(); });