Skip to content

Instantly share code, notes, and snippets.

@pankajpatel
Last active November 28, 2017 09:45
Show Gist options
  • Save pankajpatel/d1e80bb918a05f7b3c0b to your computer and use it in GitHub Desktop.
Save pankajpatel/d1e80bb918a05f7b3c0b to your computer and use it in GitHub Desktop.
ToDo App Form Handling AngularJS Code
$scope.tasks = [];
$scope.editIndex = false;
$scope.addTask = function () {
if( $scope.editIndex === false){
$scope.tasks.push({task: $scope.task, done: false})
} else {
$scope.tasks[$scope.editIndex].task = $scope.task;
}
$scope.editIndex = false;
$scope.task = '';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment