Small additions and bug fixes.

Signed-off-by: James Cole <thegrumpydictator@gmail.com>
This commit is contained in:
James Cole
2016-11-02 20:52:40 +01:00
parent 5e480eca36
commit a7e0e3fc15
2 changed files with 12 additions and 5 deletions

View File

@@ -11,14 +11,13 @@ $(function () {
"use strict";
// load the account report, which this report shows:
loadAjaxPartial('accountReport', accountReportUri);
// load income and expense reports:
loadAjaxPartial('incomeReport',incomeReportUri);
loadAjaxPartial('expenseReport',expenseReportUri);
loadAjaxPartial('incomeVsExpenseReport',incExpReportUri);
loadAjaxPartial('incomeReport', incomeReportUri);
loadAjaxPartial('expenseReport', expenseReportUri);
loadAjaxPartial('incomeVsExpenseReport', incExpReportUri);
});
@@ -106,13 +105,19 @@ function displayAjaxPartial(data, holder) {
// call some often needed recalculations and what-not:
// find a sortable table and make it sortable:
$.bootstrapSortable(true);
if (typeof $.bootstrapSortable === "function") {
$.bootstrapSortable(true);
}
// find the info click things and respond to them:
triggerInfoClick();
// trigger list thing
listLengthInitial();
// trigger thing for budgets:
$('.budget-chart-activate').unbind('click').on('click', clickBudgetChart);
}
function failAjaxPartial(uri, holder) {