-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (47 loc) · 1.79 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
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<style type="text/css">
html {
height:100%;
}
body {
height:100%;
}
body {
overflow:hidden;
}
</style>
<meta charset="UTF-8">
<!-- Can be used on Mobile device -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, user-scalable=0">
<title>Comments</title>
<!-- Automatically provides/replaces `Promise` if missing or broken. -->
<script src="https://cdn.jsdelivr.net/npm/es6-promise@4/dist/es6-promise.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/es6-promise@4/dist/es6-promise.auto.min.js"></script>
<!-- React and a Babel to transpile JSX on client side-->
<script src="lib/react/react.production.min.js"></script>
<script src="lib/react/react-dom.production.min.js"></script>
<script src="lib/babel/babel.min.js" data-presets="es2015,react,stage1"></script>
<!-- timeago.js for display of ".. ago" times -->
<script src="lib/timeago/timeago.min.js"></script>
<!-- Semantic UI -->
<script src="lib/semantic-ui/semantic-ui-react.min.js"></script>
<link rel="stylesheet" href="lib/semantic-ui/semantic.min.css">
<!-- OpenMedia SDK -->
<script src="lib/OMWebPluginLib/common/index.js"></script>
<script src="lib/OMWebPluginLib/common/api.js"></script>
<script src="lib/OMWebPluginLib/host/channel.js"></script>
<script src="lib/OMWebPluginLib/host/api.js"></script>
<script src="lib/OMWebPluginLib/plugin/index.js"></script>
<!-- The config file -->
<script type="text/javascript" src="config/config.js"></script>
<!-- our application files -->
<script type="text/babel" src="src/comments.js"></script>
<script type="text/babel" src="src/main.js">
</script>
</head>
<body>
<div id="root"></div>
</body>
</html>