Last active
November 28, 2017 09:45
-
-
Save pankajpatel/40ea7637983e6c66374b to your computer and use it in GitHub Desktop.
ToDo App Task AngularJS List
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
<!-- Task List Starts Here --> | |
<ul class="list-group" ng-show="tasks.length > 0"> | |
<li class="list-group-item clearfix task" ng-repeat="todo in tasks" ng-class="{disabled: todo.done}"> | |
<p class="lead">{{todo.task}}</p> | |
<div> | |
<span class="pull-right"> | |
<button class="btn btn-default btn-xs"><span class="glyphicon glyphicon-pencil" | |
ng-click="editTask($index)"></span></button> | |
<button class="btn btn-primary btn-xs" ng-show="!todo.done"><span class="glyphicon glyphicon-ok" | |
ng-click="doneTask($index)"></span></button> | |
<button class="btn btn-primary btn-xs" ng-show="todo.done"><span class="glyphicon glyphicon-repeat" | |
ng-click="unDoneTask($index)"></span></button> | |
<button class="btn btn-danger btn-xs"><span class="glyphicon glyphicon-remove" | |
ng-click="deleteTask($index)"></span></button> | |
</span> | |
</div> | |
</li> | |
</ul> | |
<!-- Task List Ends Here --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment