Fixed month selection.

This commit is contained in:
Alexis Lahouze 2013-03-20 17:04:42 +01:00
parent f50f553817
commit 72b69ebf71
1 changed files with 5 additions and 5 deletions

View File

@ -60,14 +60,14 @@ var MonthController = function($scope, $http, $rootScope) {
angular.forEach($scope.months, function(month) {
// Reset selected month to the new instance corresponding to the old one
if($scope.month) {
if(month == $scope.month) {
monthToSelect = month;
}
} else {
if(month.year === currentYear && month.month === currentMonth) {
if(month.year == $scope.month.year && month.month == $scope.month.month) {
monthToSelect = month;
}
}
if(!monthToSelect && month.year == currentYear && month.month == currentMonth) {
monthToSelect = month;
}
});
// Set selected month to the last one if not yet selected.