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-18 09:37:54 +01:00
|
|
|
if (typeof(googleComboChart) == 'function' && typeof(recurringID) != 'undefined') {
|
|
|
|
googleComboChart('chart/recurring/' + recurringID, 'recurring-overview');
|
2014-11-13 16:13:32 +01:00
|
|
|
}
|
2014-10-11 21:23:31 +02:00
|
|
|
}
|
|
|
|
);
|