Skip to content

Instantly share code, notes, and snippets.

@ZachMoreno
Created July 12, 2012 23:06
Show Gist options
  • Save ZachMoreno/3101719 to your computer and use it in GitHub Desktop.
Save ZachMoreno/3101719 to your computer and use it in GitHub Desktop.
function TodoCtrl($scope) {
$scope.todos = [
{text:'learn angular', done:true},
{text:'build an angular app', done:false}];
// Add
$scope.addTodo = function() {
$scope.todos.push({text:$scope.todoText, done:false});
$scope.todoText = '';
};
// Count
$scope.remaining = function() {
var count = 0;
angular.forEach($scope.todos, function(todo) {
count += todo.done ? 0 : 1;
});
return count;
};
// Archive
$scope.archive = function() {
var oldTodos = $scope.todos;
$scope.todos = [];
angular.forEach(oldTodos, function(todo) {
if (!todo.done) $scope.todos.push(todo);
});
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment