Skip to content

Instantly share code, notes, and snippets.

@pankajpatel
Last active November 28, 2017 09:45
Show Gist options
  • Save pankajpatel/557b42fb1ed1dec5b381 to your computer and use it in GitHub Desktop.
Save pankajpatel/557b42fb1ed1dec5b381 to your computer and use it in GitHub Desktop.
ToDo App Task Actions AngularJS Code
$scope.editTask = function (index) {
$scope.task = $scope.tasks[index].task;
$scope.editIndex = index;
}
$scope.doneTask = function (index) {
$scope.tasks[index].done = true;
}
$scope.unDoneTask = function (index) {
$scope.tasks[index].done = false;
}
$scope.deleteTask = function (index) {
$scope.tasks.splice(index, 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment