forked from codesandbox/codesandbox-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (39 loc) · 1.4 KB
/
index.html
File metadata and controls
42 lines (39 loc) · 1.4 KB
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<link rel="stylesheet" href="./index.css" />
</head>
<body>
Jump to:
<a class="loading-opts" href="./smoketest.html">[SMOKETEST]</a>
|
<a class="loading-opts" href="./playground.generated/index.html">[PLAYGROUND]</a>
|
<a class="loading-opts" href="./mouse-fixed.html">[fixed element]</a>
|
<a class="loading-opts" href="./mouse-scrollable-body.html">[scrollable body]</a>
|
<a class="loading-opts" href="./mouse-scrollable-element.html">[scrollable element]</a>
|
<a class="loading-opts" href="./colorize.html">[colorize element]</a>
|
<a class="loading-opts" href="./cross-origin-broken.html">[cross origin broken]</a>
|
<a class="loading-opts" href="./cross-origin-good.html">[cross origin good]</a>
<br/><br/>
<div id="bar" style="margin-bottom: 6px;"></div>
<div style="clear:both"></div>
<div id="container" style="float:left;width:800px;height:450px;border: 1px solid grey"></div>
<div id="options" style="float:left;width:220px;height:450px;border: 1px solid grey"></div>
<div style="clear:both"></div>
<script src="../metadata.js"></script>
<script src="dev-setup.js"></script>
<script>
loadEditor(function() {
require(['./index'], function() {});
});
</script>
</body>
</html>