Last active
November 28, 2017 09:45
-
-
Save pankajpatel/557b42fb1ed1dec5b381 to your computer and use it in GitHub Desktop.
ToDo App Task Actions AngularJS Code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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