-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
26 lines (26 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>JavaScript Prototype Chain Viewer 0.1.0</title>
<link rel="stylesheet" href="web/styles/index.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.10.0/codemirror.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.10.0/theme/monokai.min.css"/>
</head>
<body>
<a href="https://github.com/tansongyang/js-prototype-chain-viewer"><img style="position: absolute; top: 0; right: 0; border: 0; z-index: 1;" src="https://camo.githubusercontent.com/52760788cde945287fbb584134c4cbc2bc36f904/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f77686974655f6666666666662e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_white_ffffff.png"></a>
<div class="half-column">
<div id="editor">
<div id="menu-bar">
<button id="run">Run</button>
</div>
<div id="code-wrapper"></div>
</div>
<div id="properties-window"></div>
</div>
<div id="output" class="half-column">
<div id="output-content"></div>
</div>
<script src="web/scripts/bundle.js"></script>
</body>
</html>