New code for #736

This commit is contained in:
James Cole
2017-11-10 15:00:24 +01:00
parent 8f57222098
commit b899628dbe
9 changed files with 193 additions and 7 deletions

View File

@@ -48,7 +48,7 @@ $(document).ready(function () {
// click the delete button:
$('.mass_delete').click(goToMassDelete);
// click reconcile button
$('.mass_reconcile').click(goToReconcile);
// $('.mass_reconcile').click(goToReconcile);
});
/**
@@ -226,6 +226,9 @@ function stopMassSelect() {
// hide the stop button
$('.mass_stop_select').hide();
// show reconcile account button, if present
$('.mass_reconcile').show();
return false;
}
@@ -253,5 +256,8 @@ function startMassSelect() {
// show the stop button
$('.mass_stop_select').show();
// hide reconcile account button, if present
$('.mass_reconcile').hide();
return false;
}