Skip to content

Instantly share code, notes, and snippets.

View lgdelacruz92's full-sized avatar

Lester lgdelacruz92

  • Santa Barbara California
View GitHub Profile
<!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}}
<!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>