-
Notifications
You must be signed in to change notification settings - Fork 9
/
test.html
42 lines (42 loc) · 1.34 KB
/
test.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
<html>
<head>
<meta charset='utf-8'>
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Droid+Sans" type="text/css">
<link rel="stylesheet" href="resources/public/normalize.css" type="text/css">
<link rel="stylesheet" href="resources/public/application.css" type="text/css">
<link href='test-favicon.png' rel='shortcut icon'>
<style>
body {
line-height: 3rem;
}
#test-output {
width: 1000px;
margin: 20px auto 0;
background: #eee;
padding: 30px;
}
#test-output h1 {
margin-top: 0;
}
.green, .red {
padding: 2px 5px;
color: white;
}
.green {
background-color: darkgreen;
}
.red {
background-color: red;
}
</style>
</head>
<body>
<script type='text/javascript' id='lt_ws' src='http://localhost:60532/socket.io/lighttable/ws.js'></script>
<script type='text/javascript' id='lt_ws' src='http://localhost:61958/socket.io/lighttable/ws.js'></script>
<script src="javascript/react-0.11.1.js"></script>
<script src="testout/goog/base.js" type="text/javascript"></script>
<script src="test.js" type="text/javascript"></script>
<script type="text/javascript">goog.require("omingardtest.test");</script>
<div id="test-output"></div>
</body>
</html>