-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (44 loc) · 2.39 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
53
54
<html>
<head>
<title>Chat App</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script type="text/javascript" src="http://netdna.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<link href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="mock-up/chat-screen.css">
<link href="http://bootswatch.com/darkly/bootstrap.min.css" rel="stylesheet" type="text/css">
<!-- bootstrap-dialog -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap3-dialog/1.34.7/js/bootstrap-dialog.min.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap3-dialog/1.34.7/css/bootstrap-dialog.min.css" rel="stylesheet" type="text/css">
<!-- emoji library -->
<script src="//cdn.jsdelivr.net/emojione/2.2.0/lib/js/emojione.min.js"></script>
<link rel="stylesheet" href="//cdn.jsdelivr.net/emojione/2.2.0/assets/css/emojione.min.css"/>
<!-- jquery-textcomplete -->
<script src="node_modules/jquery-textcomplete/dist/jquery.textcomplete.min.js"></script>
<!-- <link rel="stylesheet" href="node_modules/jquery-textcomplete/dist/jquery.textcomplete.css"/> -->
<!-- color-scheme -->
<script src="color-scheme.min.js"></script>
<!-- netflux -->
<script src="node_modules/netflux/dist/netflux.es2015.umd.js"></script>
<!-- marked -->
<script src="node_modules/marked/lib/marked.js"></script>
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/png" href="icon.png" />
<!-- 1. Load libraries -->
<!-- Polyfill(s) for older browsers -->
<script src="node_modules/core-js/client/shim.min.js"></script>
<script src="node_modules/zone.js/dist/zone.js"></script>
<script src="node_modules/reflect-metadata/Reflect.js"></script>
<script src="node_modules/systemjs/dist/system.src.js"></script>
<!-- 2. Configure SystemJS -->
<script src="systemjs.config.js"></script>
<script>
System.import('app').catch(function(err){ console.error(err); });
</script>
</head>
<!-- 3. Display the application -->
<body>
<my-app><div id="awesome-dots"></div></my-app>
</body>
</html>