Created
December 22, 2013 16:26
-
-
Save luckyduck/8084932 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<div ng-app="angularlistApp"> | |
<div ng-controller="ProductListCtrl"> | |
<ul> | |
<li ng-repeat="product in products"> | |
{{product.name}} | |
<p>{{product.description}}</p> | |
</li> | |
</ul> | |
<p>Total number of products: {{products.length}}</p> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment