Prevent event propagation for footable toggle

master
friedPotat0 2019-07-27 17:14:56 +02:00
parent 581f8c77c7
commit abf0548ca4
1 changed files with 4 additions and 0 deletions

View File

@ -114,6 +114,10 @@ jQuery(function($){
});
});
$('table tbody').on('click', 'span.footable-toggle', function () {
event.stopPropagation();
})
// Initial table drawings
draw_quarantine_table();
});