N°2192 table-selectable-lines : add forgotten param

This commit is contained in:
Pierre Goiffon
2019-05-07 11:53:39 +02:00
parent b1ff7f0e9b
commit 12a2035791

View File

@@ -75,7 +75,7 @@ $(document).ready(function () {
});
// check_all event is fired for tableSorter JQuery plugin
$(document).on("check_all", TABLE_SELECTOR, function () {
$(document).on("check_all", TABLE_SELECTOR, function (event) {
var $eventTarget = $(event.target);
if (!$eventTarget.has(LINE_WITH_INPUT_IN_FIRST_CELL_SELECTOR))
// Originally we had :has in the handler selector but performances were very bad :(