This repository was archived by the owner on Mar 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
39 lines (38 loc) · 1.51 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
<!doctype html>
<html lang="en" ng-app="app">
<head>
<meta charset="utf-8">
<title ng-bind="'Pull requests — ' + title"></title>
<link rel="stylesheet" href="3rdparty/bootstrap/css/bootstrap.css">
<link rel="stylesheet" href="css/app.css">
<script src="3rdparty/lodash/lodash.js"></script>
<script src="3rdparty/jquery/jquery.js"></script>
<script src="3rdparty/angular/angular.js"></script>
<script src="3rdparty/angular/angular-route.js"></script>
<script src="3rdparty/angular/angular-resource.js"></script>
<script src="3rdparty/angular/angular-sanitize.js"></script>
<script src="3rdparty/angular/ui-bootstrap-tpls.js"></script>
<script src="3rdparty/marked/marked.js"></script>
<script src="js/alert.js"></script>
<script src="js/app.js"></script>
<script src="js/templates.js"></script>
<script src="js/controllers.js"></script>
<script src="js/directives.js"></script>
<script src="js/filters.js"></script>
<script src="js/services.js"></script>
<script src="js/bootstrap-addon.js"></script>
<script src="js/fixed-table-header.js"></script>
</head>
<body id="app" class="ng-cloak">
<div ng-view></div>
<div class="footer-push"></div>
<div class="footer">
<div ng-controller="alertController" class="alert-container">
<alert ng-repeat="alert in alerts | limitTo:-options.showLimit | reverse" type="alert.type" close="closeAlert(alert)">
<input type="checkbox" class="hold btn" ng-model="alert.hold">
{{alert.msg}}{{alert.hold}}
</alert>
</div>
</div>
</body>
</html>