mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-01-06 22:21:42 +00: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();
|
||||
});
|
||||
}
|
||||
3
public/js/ff/transactions/list.js
vendored
3
public/js/ff/transactions/list.js
vendored
@@ -36,7 +36,7 @@ $(document).ready(function () {
|
||||
countChecked();
|
||||
}
|
||||
});
|
||||
$('.select_all_single').change(function () {
|
||||
$('.select_all_single').unbind('change').change(function () {
|
||||
countChecked();
|
||||
});
|
||||
|
||||
@@ -147,7 +147,6 @@ function stopMassSelect() {
|
||||
|
||||
function startMassSelect() {
|
||||
"use strict";
|
||||
|
||||
// show "select all" box in table header.
|
||||
$('.select_boxes').show();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user