-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
65 lines (64 loc) · 3.72 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
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
<!DOCTYPE HTML>
<html>
<head>
<script type="text/javascript" src="https://rawgit.com/wwwg/wasmdec/master/wasmdec.js/wasmdec.js"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.indigo-deep_purple.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/octicons/8.0.0/build.css" />
<script src="https://code.getmdl.io/1.3.0/material.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/js-beautify/1.7.5/beautify.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Ubuntu+Mono" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
<link rel="stylesheet" href="web-wasmdec/main.css" type="text/css" />
<script type="text/javascript" src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.4.1/ace.js"></script>
<script type="text/javascript" src="web-wasmdec/main.js"></script>
<script type="text/javascript" src="web-wasmdec/examples.js"></script>
</head>
<body>
<div id="loadingOverlay">
<div id="spinnerHolder">
<div class="mdl-spinner mdl-js-spinner is-active" id="spinner"></div>
</div>
</div>
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header">
<header class="mdl-layout__header mdl-layout__header--seamed">
<div class="mdl-layout__header-row" id="header">
<span class="mdl-layout-title" id="header">
<u id="inner-header" onclick="window.location.href='https://github.com/wwwg/wasmdec'">wasmdec</u> - WebAssembly to C Decompiler
</span>
<div class="android-header-spacer mdl-layout-spacer"></div>
<button class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-button--accent" id="selectFileBtn">
Select file
</button>
<!-- -->
<button class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-button--accent" id="decompileBtn">
Decompile
</button>
<!--
<button class="mdl-button mdl-js-button mdl-button--icon">
<span class="octicon octicon-mark-github"></span>
</button>
-->
</div>
</header>
<div class="mdl-layout__drawer">
<span class="mdl-layout-title">More Examples</span>
<nav class="mdl-navigation">
<a class="mdl-navigation__link" href="javascript:example('addTwo')">Add Two</a>
<a class="mdl-navigation__link" href="javascript:example('funcs')">Functions</a>
<a class="mdl-navigation__link" href="javascript:example('emcc')">Emscripten</a>
<a class="mdl-navigation__link" href="javascript:example('switch')">Switch Routine</a>
<a class="mdl-navigation__link" href="javascript:example('webdsp')">WebDSP (Signal processing library)</a>
<a class="mdl-navigation__link" href="https://github.com/wwwg/wasmdec">wasmdec on GitHub</a>
</nav>
</div>
</div>
<div id="input_panel">
<div id="input"></div>
</div>
<div id="output_panel">
<div type="text" id="output"></div>
</div>
</body>
</html>