jsonDataSet-AngularJS.html
<html ng-app>
<head>
<link rel="stylesheet" href="css/app.css">
<link rel="stylesheet" href="css/bootstrap.css">
<script src="lib/angular/angular.js"></script>
<script src="js/jsonDataset_controllers.js"></script>
<title ng-bind-template="Google Phone Gallery: {{query}}">Google Phone Gallery</title>
</head>
<body ng-controller="PhoneListCtrl">
<div class="container-fluid">
<div class="row-fluid">
<div class="span2">
<!–Sidebar content–>
Search: <input ng-model="query" />
Sort by:
<select ng-model="orderProp">
<option value="name">Alphabetical</option>
<option value="snippet">Snippet</option>
<option value="age">Newest</option>
<option value="-name">Desc Alphabetical</option>
<option value="-snippet">Desc Snippet</option>
<option value="-age">Desc Newest</option>
</select>