-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
67 lines (64 loc) · 1.93 KB
/
test.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>JavaScript example</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style media="only screen">
html,
body {
height: 100%;
width: 100%;
margin: 0;
box-sizing: border-box;
-webkit-overflow-scrolling: touch;
}
html {
position: absolute;
top: 0;
left: 0;
padding: 0;
overflow: auto;
}
body {
padding: 1rem;
overflow: auto;
}
</style>
<link rel="stylesheet" href="test.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap-theme.min.css"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.6.3/css/all.css"
/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.12.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="top-container">
<div class="grid-wrapper ag-theme-alpine">
<div class="panel panel-primary" style="margin-right: 10px">
<div class="panel-heading">Athletes</div>
<div class="panel-body">
<div id="eLeftGrid"></div>
</div>
</div>
<div class="panel panel-primary" style="margin-left: 10px">
<div class="panel-heading">Selected Athletes</div>
<div class="panel-body">
<div id="eRightGrid"></div>
</div>
</div>
</div>
</div>
<script src="https://unpkg.com/[email protected]/dist/ag-grid-community.min.js"></script>
<script src="test.js"></script>
</body>
</html>