Browse Source

Prevent event propagation for footable toggle

friedPotat0 6 years ago
parent
commit
abf0548ca4
1 changed files with 4 additions and 0 deletions
  1. 4 0
      data/web/js/site/quarantine.js

+ 4 - 0
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();
 });