-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.html
31 lines (28 loc) · 1.21 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!doctype html>
<html lang="en" ng-app="demoApp">
<head>
<meta charset="utf-8">
<title>Hooked on AngularJS TechCrunchMunch</title>
<link rel="stylesheet" href="/css/global.css">
<script src="/node_modules/angular/angular.min.js"></script>
<script src="/node_modules/angular-route/angular-route.min.js"></script>
<script src="/node_modules/angular-touch/angular-touch.min.js"></script>
<script src="/node_modules/angular-animate/angular-animate.min.js"></script>
<script src="/js/app.js"></script>
<script src="/js/controllers.js"></script>
</head>
<body>
<div id="persistent-menu">
<label for="animator" class="element-invisible">Animation Style</label>
<select id="animator" ng-model="animate">
<option value="" selected>Choose an Animation Style</option>
<option value="fade">fade</option>
<option value="slide">slide</option>
</select>
| <a href="/#/map">View Map</a> | <a href="/#/phones">Back to Phones</a> | <button type="button" ng-click="locate()" ng-controller="LocateCtrl">Locate Me</button>
</div>
<br />
<div id="view" ng-view class="{{animate}}"></div>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?sensor=false"></script>
</body>
</html>