mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-24 06:43:23 +00:00
14 lines
522 B
JavaScript
14 lines
522 B
JavaScript
$(document).ready(function () {
|
|
|
|
if (typeof(googleTable) == 'function') {
|
|
googleTable('table/recurring', 'recurring-table');
|
|
|
|
if (typeof(recurringID) != 'undefined') {
|
|
googleTable('table/recurring/' + recurringID + '/transactions', 'transaction-table');
|
|
}
|
|
}
|
|
if (typeof(googleComboChart) == 'function' && typeof(recurringID) != 'undefined') {
|
|
googleComboChart('chart/recurring/' + recurringID, 'recurring-overview');
|
|
}
|
|
}
|
|
); |