mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	New code for new date range thing.
This commit is contained in:
		| @@ -1,6 +1,38 @@ | ||||
| $(function () { | ||||
|  | ||||
|     $('.currencySelect').click(currencySelect) | ||||
|     $('.currencySelect').click(currencySelect); | ||||
|  | ||||
|         $('#daterange').daterangepicker( | ||||
|             { | ||||
|                 ranges: { | ||||
|                     'This Month': [moment().startOf('month'), moment().endOf('month')], | ||||
|                     'Last Month': [moment().subtract('month', 1).startOf('month'), moment().subtract('month', 1).endOf('month')], | ||||
|                     'Next Month': [moment().add('month', 1).startOf('month'), moment().add('month', 1).endOf('month')] | ||||
|                 }, | ||||
|                 opens: 'left', | ||||
|  | ||||
|                 format: 'DD-MM-YYYY', | ||||
|                 startDate: start, | ||||
|                 endDate: end | ||||
|             }, | ||||
|             function(start, end, label) { | ||||
|  | ||||
|                 // send post. | ||||
|                 $.post(dateRangeURL, { | ||||
|                     start: start.format('YYYY-MM-DD'), | ||||
|                     end: end.format('YYYY-MM-DD'), | ||||
|                     _token: token | ||||
|                 }).success(function() { | ||||
|                     window.location.reload(true); | ||||
|                 }).fail(function() { | ||||
|                     alert('Could not change date range'); | ||||
|  | ||||
|                 }); | ||||
|  | ||||
|                 //alert('A date range was chosen: ' + start.format('YYYY-MM-DD') + ' to ' + end.format('YYYY-MM-DD')); | ||||
|             } | ||||
|  | ||||
|         ); | ||||
|  | ||||
| }); | ||||
|  | ||||
| @@ -21,4 +53,5 @@ function currencySelect(e) { | ||||
|  | ||||
|  | ||||
|     return false; | ||||
| } | ||||
| } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user