12345678910111213141516171819202122232425 |
- <!DOCTYPE html>
- <html ng-app="store">
- <head lang="en">
- <meta charset="UTF-8">
- <title>AngularJS Store</title>
- <link rel="stylesheet"
- type="text/css"
- href="../bootstrap/css/bootstrap.min.css"/>
- <script type="text/javascript" src="../angular/angular.min.js"></script>
- <script type="text/javascript" src="app.js"></script>
- </head>
- <body ng-controller="StoreController as store">
- <!-- Products Container -->
- <div class="list-group" ng-hide="store.product.soldOut">
- <!-- Product container -->
- <div class="list-group-item" ng-repeat="product in store.products">
- <h1>{{ product.name }}</h1>
- <h2>${{ product.price }}</h2>
- <p>{{ product.description }}</p>
- <button ng-show="store.product.canPurchase"> Add to cart</button>
- </div>
- </div>
- </body>
- </html>
|