-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (31 loc) · 1.12 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
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Awesome Text Analysis</title>
<script type="text/javascript" src="loadJSON.js"></script>
<link rel="stylesheet" type="text/css" href="index.css" />
<!-- codemirror stuff -->
<script src="codemirror-4.11/lib/codemirror.js"></script>
<link rel="stylesheet" href="codemirror-4.11/lib/codemirror.css">
<link rel="stylesheet" href="codemirror-4.11/theme/mbo.css">
<script src="codemirror-4.11/mode/javascript/javascript.js"></script>
</head>
<body>
<div id="navigation" class="scroller">
<input id="file" type="file">
<button id="guide" class="clickable" onclick="document.location='guide.html'">
Query Making Guide
</button>
</div>
<div id="content" class="scroller">
<div class="message">
<div class="content">
Select your Hangouts.json file using the input on the left.
If you don't have such a file yet, you can get one
<a href="https://www.google.com/settings/takeout">here</a>
by signing in with your Google account.
</div>
</div>
</div>
</body>
</html>