First experimental report generator / choice thing.

This commit is contained in:
James Cole
2015-12-03 14:52:10 +01:00
parent 1cbbf9baa4
commit 0b382426e9
3 changed files with 90 additions and 15 deletions

View File

@@ -3,6 +3,21 @@
$(function () {
"use strict";
drawChart();
$('#inputDateRange').daterangepicker(
{
minDate: minDate,
drops: 'up',
}
);
$('.openModal').on('click', openModal);
// click open the top X income list:
$('#showIncomes').click(showIncomes);
// click open the top X expense list:
$('#showExpenses').click(showExpenses);
});
@@ -79,15 +94,4 @@ function showExpenses() {
}
return false;
}
$(function () {
"use strict";
$('.openModal').on('click', openModal);
// click open the top X income list:
$('#showIncomes').click(showIncomes);
// click open the top X expense list:
$('#showExpenses').click(showExpenses);
});
}