-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathjsconsole.html
37 lines (37 loc) · 1.42 KB
/
jsconsole.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css">
<script src="./jsconsole_files/polyfill.min.js"></script>
<title>console</title>
<link href="./jsconsole_files/main.css" rel="stylesheet">
</head>
<body>
<div id="root">
<i class="far fa-copy"></i>
<div tabindex="-1" class="App theme-undefined">
<div class="react-console-container">
<div class="Line">
<div class="prompt output log ">
<div class="LineNav">
<button title="Copy as JSON" class="icon copy">copy</button>
</div>
<div class="type string toggle bareString">
<button class="icon expand">+</button>
<span>Use <strong>:help</strong> to show commands version: 1.0 </span>
</div>
</div>
</div>
</div>
<div class="Input">
<textarea class="cli" rows="1"></textarea>
</div>
</div>
</div>
<script type="text/javascript" src="./jsconsole_files/main.js"></script>
</body>
</html>