-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
26 lines (26 loc) · 990 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Example - example-example108-production</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.13/angular.min.js"></script>
<script src="js/app.js"></script>
<script src="js/exampleController.js"></script>
<script src="js/myCurrentTimeDirective.js"></script>
</head>
<body ng-app="intervalExample">
<div>
<!-- Commit de Teste -->
<div ng-controller="ExampleController">
Date format: <input ng-model="format"> <hr/>
Current time is: <span my-current-time="format"></span>
<hr/>
Blood 1 : <font color='red'>{{blood_1}}</font>
Blood 2 : <font color='red'>{{blood_2}}</font>
<button type="button" data-ng-click="fight()" ng-disabled="isDisabled">Fight</button>
<button type="button" data-ng-click="stopFight()" ng-disabled="isDisabled">StopFight</button>
<button type="button" data-ng-click="resetFight()">resetFight</button>
</div>
</div>
</body>
</html>