-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (35 loc) · 1.17 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
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en" ng-app="pmApp" id="ng-app">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Performance Metric App</title>
<link rel="stylesheet" href="main.min.css">
<!--[if lt IE 8]>
<script>
document.createElement('ng-include');
document.createElement('ng-pluralize');
document.createElement('ng-view');
// Optionally these for CSS
document.createElement('ng:include');
document.createElement('ng:pluralize');
document.createElement('ng:view');
window.isIE8 = true;
</script>
<![endif]-->
</head>
<body>
<div id="main" ng-controller="master.controller" ng-cloak>
<div id="header">
<span>Performance Metrics</span>
</div>
<div id="category-nav">
<div class="rows">
<div class="cell ng-class:getCategoryClass('trends')" ng-click="selectedCategory('trends')">LATEST TRENDS</div>
<div class="cell ng-class:getCategoryClass('volumes')" ng-click="selectedCategory('volumes')">{{config.YTDTab.value | uppercase}}</div>
</div>
</div>
<div ng-view></div>
</div>
<script src="bundle.js"></script>
</body>
</html>