This commit is contained in:
Alexis Lahouze 2015-08-19 15:03:15 +02:00
parent 803b2baeab
commit f602109c53

View File

@ -172,13 +172,6 @@ accountantApp
"$rootScope", "$scope", "$http", "$routeParams", "$rootScope", "$scope", "$http", "$routeParams",
function($rootScope, $scope, $http, $routeParams) { function($rootScope, $scope, $http, $routeParams) {
$scope.setExtremes = function(e) {
begin = moment.utc(e.min);
end = moment.utc(e.max);
$scope.selectRange(begin, end);
};
// Configure chart for entries. // Configure chart for entries.
$scope.config = { $scope.config = {
options: { options: {
@ -246,7 +239,9 @@ accountantApp
}, },
minRange: 3600 * 1000 * 24 * 14, // 2 weeks minRange: 3600 * 1000 * 24 * 14, // 2 weeks
events: { events: {
afterSetExtremes: $scope.setExtremes afterSetExtremes: function(e) {
$scope.selectRange(moment.utc(e.min), moment.utc(e.max));
}
}, },
currentMin: moment.utc().startOf('month'), currentMin: moment.utc().startOf('month'),
currentMax: moment.utc().endOf('month') currentMax: moment.utc().endOf('month')