mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Fix #849
This commit is contained in:
5
public/js/ff/search/index.js
vendored
5
public/js/ff/search/index.js
vendored
@@ -29,7 +29,6 @@ $(function () {
|
||||
});
|
||||
|
||||
function startSearch(query) {
|
||||
|
||||
$.post(searchUri, {query: query}).done(presentSearchResults).fail(searchFailure);
|
||||
}
|
||||
|
||||
@@ -44,4 +43,8 @@ function presentSearchResults(data) {
|
||||
$('span.search_count').text(data.count);
|
||||
$('.search_box').find('.overlay').remove();
|
||||
$('.search_results').html(data.html).show();
|
||||
|
||||
$('.select_all_single').unbind('change').change(function () {
|
||||
countChecked();
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user