mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 18:54:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			341 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			341 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /* global googleComboChart, billID */
 | |
| 
 | |
| $(document).ready(function () {
 | |
|                       "use strict";
 | |
|                       if (typeof(googleComboChart) === 'function' && typeof(billID) !== 'undefined') {
 | |
|                           googleComboChart('chart/bill/' + billID, 'bill-overview');
 | |
|                       }
 | |
|                   }
 | |
| ); |