-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.html
39 lines (34 loc) · 1.54 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>wad js test</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Inconsolata" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="container">
<div class="row">
<form class="form-inline">
<div class="form-group">
<input type="file" id="fileInput">
</div>
<div class="form-group">
<input class="form-control" type="url" id="urlInput">
<button class="btn btn-default" id="urlLoad" onClick="loadURL();">Load URL</button>
</div>
</form>
<p class="text-danger" id="errors"></p>
<table id="lumpTable"><tr><td valign="top"><div id="lumpList"></div></td><td valign="top"><div id="preview"></div></td></tr></table>
<p id="loading">loading...</p>
</div>
</div>
<script type="text/javascript" src="https://code.jquery.com/jquery-1.11.0.min.js"></script>
<script type="text/javascript" src="lib/midi.js"></script>
<script type="text/javascript" src="dist/wad.min.js"></script>
<script type="text/javascript" src="dist/ui.min.js"></script>
</body>
</html>