mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 18:54:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			292 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			292 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /* globals $, categoryID, googleColumnChart */
 | |
| $(function () {
 | |
|     "use strict";
 | |
|     if (typeof categoryID !== 'undefined') {
 | |
|         googleColumnChart('chart/category/' + categoryID + '/all', 'all');
 | |
|         googleColumnChart('chart/category/' + categoryID + '/month', 'month');
 | |
|     }
 | |
| 
 | |
| 
 | |
| 
 | |
| }); |