Fixed compile error in event listeners.

This commit is contained in:
Jan Böhmer 2019-09-11 16:55:52 +02:00
parent e7a95926f6
commit c2c9f3a938

View file

@ -228,7 +228,7 @@ $(document).on("ajaxUI:start ajaxUI:reload", function() {
var new_state = $(this).tristate('state');
//@ts-ignore
$('.tristate:checkbox', $row).tristate('state', new_state;
$('.tristate:checkbox', $row).tristate('state', new_state);
});
});