-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
30 lines (24 loc) · 929 Bytes
/
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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>RUM Tester</title>
<meta name="description" content="Real Time Stats test application">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0" />
<link rel="shortcut icon" type="image/png" href="static/favicon.png"/>
<!-- CSS -->
<link href='http://fonts.googleapis.com/css?family=Roboto:400,300,500' rel='stylesheet' type='text/css'>
<!-- Compiled and minified JavaScript -->
<script src="build/rum.js" type="text/javascript"></script>
<script type="text/javascript">
window.onload = function() {
Rum.Monitor.init();
Rum.Router.serverURL = 'http://localhost:3000/';
Rum.Router.requestMethod = 'GET';
}
</script>
</head>
<body onload="">
</body>
</html>