-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (31 loc) · 1.54 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
32
33
<!DOCTYPE html>
<html lang="en" ng-app="testing-app">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Angular testing</title>
<link rel="stylesheet" type="text/css" href="bower_components/bootstrap/dist/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="css/app.css" />
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script type="text/javascript" src="bower_components/angular/angular.min.js" ></script>
<script type="text/javascript" src="js/app.js" ></script>
<link rel="stylesheet" href="bower_components/perfect-scrollbar/min/perfect-scrollbar.min.css" />
<script src="bower_components/perfect-scrollbar/min/perfect-scrollbar.min.js"></script>
<script src="bower_components/perfect-scrollbar/min/perfect-scrollbar.with-mousewheel.min.js"></script>
<script src="bower_components/angular-perfect-scrollbar/src/angular-perfect-scrollbar.js"></script>
</head>
<body>
<div class="container" ng-controller="rows-controller">
<perfect-scrollbar class="scroller" wheel-propagation="true" wheel-speed="20" refresh-on-change="rows">
<div class="row" ng-repeat="row in rows">
<p class="text-center" ng-class="{'text-danger': row.friend}">
Row {{row.name}}, steamid {{row.steamid}}
</p>
</div>
</perfect-scrollbar>
</div>
<div class="container" ng-controller="player-count">
<div class="col-md-6">EU: {{ playerCounts.eu }}</div>
<div class="col-md-6">US: {{ playerCounts.us }}</div>
</div>
</body>
</html>