Files
firefly-iii/public/assets/javascript/firefly/recurring.js

14 lines
520 B
JavaScript
Raw Normal View History

2014-09-28 08:47:51 +02:00
$(document).ready(function () {
2014-11-13 16:13:32 +01:00
if (typeof(googleTable) == 'function') {
googleTable('table/recurring', 'recurring-table');
2014-11-15 11:36:27 +01:00
if (typeof(recurringID) != 'undefined') {
googleTable('table/recurring/' + recurringID + '/transactions', 'transaction-table');
}
2014-11-13 16:13:32 +01:00
}
2014-11-15 11:36:27 +01:00
if (typeof(googleLineChart) == 'function' && typeof(recurringID) != 'undefined') {
googleLineChart('chart/recurring/' + recurringID, 'recurring-overview');
2014-11-13 16:13:32 +01:00
}
2014-10-11 21:23:31 +02:00
}
);