-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (25 loc) · 1.08 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
<!DOCTYPE html>
<html ng-app="CooperApp">
<head>
<title></title>
<link rel="stylesheet" href="//cdn.jsdelivr.net/foundation/4.3.1/css/foundation.css"/>
<!--<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">-->
<!--<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-theme.min.css">-->
<!-- <script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.js"></script>-->
<link rel="stylesheet" href="css/app.css" />
</head>
<body ng-controller="CooperCtrl">
<div class="ng-cloak">
<cooper-settings></cooper-settings>
<div class="medium button expand" ng-click="start()">
<h1>{{cooper.started ? "Lap" : "Start" }}</h1>
</div>
<cooper-counter></cooper-counter>
<div class="secondary button expand" ng-hide="!cooper.started" ng-click="cooper.reset()">
<h3>Reset</h3>
</div>
</div>
<script src="//code.angularjs.org/1.2.0rc1/angular.min.js" type="application/javascript"></script>
<script src="js/app.js" type="application/javascript"></script>
</body>
</html>