-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
66 lines (65 loc) · 5.52 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE HTML>
<html manifest="">
<head>
<link rel="icon" href="https://angularjs.org/favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="https://angularjs.org/favicon.ico" type="image/x-icon">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Angular Bootstrap Kitchen Sink</title>
<link rel="stylesheet" href="https://unpkg.com/angular-ui-bootstrap/dist/ui-bootstrap-csp.css" />
<link rel="stylesheet" href="https://unpkg.com/bootswatch/paper/bootstrap.min.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/angularjs-slider/2.13.0/rzslider.min.css">
<link rel="stylesheet" href="app.css">
</head>
<body ng-app="app">
<app></app>
<script src="https://cdnjs.cloudflare.com/ajax/libs/es6-shim/0.33.3/es6-shim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.20/system-polyfills.js"></script>
<script src="https://unpkg.com/angular2/es6/dev/src/testing/shims_for_IE.js"></script>
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/angularjs/1.5.5/angular.min.js"></script>
<script type="text/javascript" src="https://unpkg.com/angular-animate@1.5.5/angular-animate.min.js"></script>
<script type="text/javascript" src="https://unpkg.com/angular-ui-bootstrap/dist/ui-bootstrap.js"></script>
<script type="text/javascript" src="https://unpkg.com/angular-ui-bootstrap/dist/ui-bootstrap-tpls.js"></script>
<script type="text/javascript" src="https://unpkg.com/angular-touch/angular-touch.min.js"></script>
<script src="https://unpkg.com/@angular/router@0.2.0/angular1/angular_1_router.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.27/angular-route.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.1.3/Chart.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angularjs-slider/2.13.0/rzslider.min.js"></script>
<script src="https://cdn.jsdelivr.net/angular.ment-io/0.9.24/mentio.min.js"></script>
<script type="text/javascript" src="app.js"></script>
<script type="text/javascript" src="app/factory/modalCodeFactory.js"></script>
<script type="text/javascript" src="app/factory/componentTypesFactory.js"></script>
<script type="text/javascript" src="app/component/navigation.js"></script>
<script type="text/javascript" src="app/component/home.js"></script>
<script type="text/javascript" src="app/component/search.js"></script>
<script type="text/javascript" src="app/component/codeWindow.js"></script>
<script type="text/javascript" src="app/component/componentTypes/basicTable/basicTable.js"></script>
<script type="text/javascript" src="app/component/componentTypes/basicTableWithSearch/basicTableWithSearch.js"></script>
<script type="text/javascript" src="app/component/componentTypes/navbar/navbar.js"></script>
<script type="text/javascript" src="app/component/componentTypes/btn/btn.js"></script>
<script type="text/javascript" src="app/component/componentTypes/inpt/inpt.js"></script>
<script type="text/javascript" src="app/component/componentTypes/password/password.js"></script>
<script type="text/javascript" src="app/component/componentTypes/checkbox/checkbox.js"></script>
<script type="text/javascript" src="app/component/componentTypes/txtarea/txtarea.js"></script>
<script type="text/javascript" src="app/component/componentTypes/radio/radio.js"></script>
<script type="text/javascript" src="app/component/componentTypes/slct/slct.js"></script>
<script type="text/javascript" src="app/component/componentTypes/typeahead/typeahead.js"></script>
<script type="text/javascript" src="app/component/componentTypes/timepicker/timepicker.js"></script>
<script type="text/javascript" src="app/component/componentTypes/chart/lineChart/lineChart.js"></script>
<script type="text/javascript" src="app/component/componentTypes/chart/barChart/barChart.js"></script>
<script type="text/javascript" src="app/component/componentTypes/modal/modal.js"></script>
<script type="text/javascript" src="app/component/componentTypes/fileInput/fileInput.js"></script>
<script type="text/javascript" src="app/component/componentTypes/slider/slider.js"></script>
<script type="text/javascript" src="app/component/componentTypes/accordian/accordian.js"></script>
<script type="text/javascript" src="app/component/componentTypes/alert/alert.js"></script>
<script type="text/javascript" src="app/component/componentTypes/datepicker/datepicker.js"></script>
<script type="text/javascript" src="app/component/componentTypes/datepickerPopup/datepickerPopup.js"></script>
<script type="text/javascript" src="app/component/componentTypes/tree/tree.js"></script>
<script type="text/javascript" src="app/component/componentTypes/treeWithSelection/treeWithSelection.js"></script>
<script type="text/javascript" src="app/component/componentTypes/tabs/tabs.js"></script>
<script type="text/javascript" src="app/component/componentTypes/advancedTable/advancedTable.js"></script>
<script type="text/javascript" src="app/component/componentTypes/mention/mention.js"></script>
<script type="text/javascript" src="app/component/componentTypes/tableWithModal/tableWithModal.js"></script>
</body>