forked from hafeez-syed/angular-common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
124 lines (103 loc) · 4.25 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!doctype html>
<html ng-app='angular-common' ng-cloak>
<head>
<title>Angular Common</title>
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css" rel="stylesheet">
<link href="//code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" rel="stylesheet">
<link href="https://rawgithub.com/dangrossman/bootstrap-daterangepicker/master/daterangepicker-bs3.css" rel='stylesheet'>
<link href='http://imperavi.com/js/redactor/redactor.css' rel="stylesheet">
<link href='http://mediaelementjs.com/js/mejs-2.13.1/mediaelementplayer.min.css' rel='stylesheet'>
<style>
* {
box-sizing:border-box;
}
html, body {
overflow-y: auto;
overflow-x: hidden;
}
section {
padding: 0 30px 30px 30px;
border-bottom: 1px solid #eee;
}
h3 {
padding-top: 25px;
margin-top: 0;
margin-bottom: 30px;
}
.left-column {
background: #f5f5f5;
border-right: 1px solid #eee;
position: fixed;
padding: 30px;
padding-top: 10px;
top: 0;
bottom: 0;
width: 25%;
}
.main-column {
margin-left: 25%;
float: left;
width: 75%;
}
</style>
</head>
<body ng-controller='MainCtrl'>
<div class='left-column'>
<h3>
<a href='https://github.com/clouddueling/angular-common' target='_blank'>
Angular/Common
</a>
</h3>
<ul>
<li ng-repeat='module in modules'>
<a scroll-on-click href='#{{ module }}'>{{ module }}</a>
</li>
</ul>
</div>
<div class='main-column'>
<div class='row'>
<div class='col-sm-12'>
<section id='confirm'>
<div ng-include='"modules/confirm/demo/index.html"'></div>
</section>
<section id='dateRange'>
<div ng-include='"modules/dateRange/demo/index.html"'></div>
</section>
<section id='drag'>
<div ng-include='"modules/drag/demo/index.html"'></div>
</section>
<section id='dragdrop'>
<div ng-include='"modules/dragdrop/demo/index.html"'></div>
</section>
<section id='draw'>
<div ng-include='"modules/draw/demo/index.html"'></div>
</section>
<section id='modal'>
<div ng-include='"modules/modal/demo/index.html"'></div>
</section>
<section id='sortable'>
<div ng-include='"modules/sortable/demo/index.html"'></div>
</section>
<section id='strings'>
<div ng-include='"modules/strings/demo/index.html"'></div>
</section>
<section id='time'>
<div ng-include='"modules/time/demo/index.html"'></div>
</section>
<section id='upload'>
<div ng-include='"modules/upload/demo/index.html"'></div>
</section>
<section id='youtube'>
<div ng-include='"modules/youtube/demo/index.html"'></div>
</section>
</div>
</div>
</div>
<script src="//code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="//code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/lodash.js/2.4.1/lodash.min.js"></script>
<script>if (!RedactorPlugins) var RedactorPlugins = {};</script>
<script src='http://imperavi.com/js/redactor/redactor.js'></script>
<script src="build/angular-common.js"></script>
</body>
</html>