-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.dev.html
33 lines (33 loc) · 1.53 KB
/
index.dev.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
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Santa's Workshop</title>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap-theme.min.css">
<!--<link rel="stylesheet" href="vendor/bootstrap/slate/bootstrap.min.css">-->
<link rel="stylesheet" href="vendor/humane-js-master/themes/jackedup.css">
<link rel="stylesheet" href="style.css">
<script type="text/javascript" src="elm.js"></script>
<script type="text/javascript" src="debugging-runtime.js"></script>
<script type="text/javascript" src="debugger.js"></script>
<script type="text/javascript" src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
<script type="text/javascript" src="vendor/humane-js-master/humane.min.js"></script>
<script type="text/javascript" src="vendor/snow/snow.js"></script>
</head>
<body>
<canvas id="canvas"></canvas>
</body>
<script type="text/javascript">
var instance = Elm.debugFullscreen(Elm.Santa, "Santa.elm");
instance.ports.showNotification.subscribe(function (message) {
if(message.length > 0) {
humane.baseCls = 'humane-jackedup';
humane.log(message);
}
});
</script>
</html>