Joined December 2015
·

Rob Miller

Front-end Developer
·
Los Angeles
·
·
·

The bug is here:
$scope.todoCompleted = function (todo) {
$scope.remainingCount += todo.completed ? -1 : 1;
todoStorage.put(todos);
};
Changed to this and the application works:

$scope.todoCompleted = function (todo) {
$scope.remainingCount += todo.completed ? 1 : -1;
todoStorage.put(todos);
};

Achievements
1 Karma
0 Total ProTip Views
Interests & Skills