<script type="text/ng-template" id="/todos.html"> | |
<ul> | |
<li ng-repeat="todo in todos"> | |
<input type="checkbox" ng-model="todo.completed"> | |
{{ todo.name }} | |
</li> | |
</ul> | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment