Refresh filters to search a transaction when a source or a destination is selected

This commit is contained in:
Yohann D'ANELLO 2020-08-15 20:19:34 +02:00
parent 75cd34f5dd
commit 89c15cbe3e
1 changed files with 4 additions and 0 deletions

View File

@ -52,6 +52,10 @@
$("#table").load(location.pathname + "?" + filters.replaceAll(" ", "%20") + " #table");
}
function autocompleted() {
refreshFilters();
}
$(document).ready(function() {
$("input").change(refreshFilters);
$("input").keyup(refreshFilters);