-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtest.html
More file actions
48 lines (34 loc) · 916 Bytes
/
Copy pathtest.html
File metadata and controls
48 lines (34 loc) · 916 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>GUID3.js</title>
<meta charset='utf-8'>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<script src='vendor/d3.js' charset='utf-8'></script>
<script src='vendor/jquery-1.11.1.js' charset='utf-8'></script>
<script src='vendor/jstest.js' charset='utf-8'></script>
<script src='build/guid3.js' charset='utf-8'></script>
<!-- tests -->
<style>
* {
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
body {
margin: 11px;
}
textarea {
-webkit-user-select: text!important;
-moz-user-select: text!important
user-select: text!important
}
</style>
</head>
<body>
<div id='test'></div>
</body>
<script src='test/test_slider.js'></script>
<script src='test/test_button.js'></script>
<script src='test/test_index.js'></script>
</html>