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
<!DOCTYPE html> | |
<html ng-app="store"> | |
<head> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css"> | |
</head> | |
<body ng-controller="StoreController as store"> | |
<ul class="list-group"> | |
<li class="list-group-item" ng-hide="product.soldOut" ng-repeat="product in store.products"> | |
<h3> | |
{{product.name}} |
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
<!DOCTYPE html> | |
<html ng-app="store"> | |
<head> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css"> | |
</head> | |
<body ng-controller="StoreController as store"> | |
<div class="list-group"> | |
<div class="list-group-item" ng-repeat="product in store.products"> | |
<h1>{{product.name}}</h1> | |
<h2>{{product.price}}</h2> |