Skip to content

Instantly share code, notes, and snippets.

@amejiarosario
Last active August 29, 2015 14:07
<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