Last active
November 28, 2017 09:45
-
-
Save pankajpatel/d1e80bb918a05f7b3c0b to your computer and use it in GitHub Desktop.
ToDo App Form Handling 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.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