-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (34 loc) · 1.3 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>Synapse</title>
<link href="./resources/material-design-icons/material-icons.css" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="./node_modules/materialize-css/dist/css/materialize.min.css" media="screen,projection" />
<link type="text/css" rel="stylesheet" href="./resources/styles.css" />
<script>
window.$ = window.jQuery = require('./node_modules/jquery/dist/jquery.min.js');
window.Hammer = require('./node_modules/materialize-css/js/hammer.min.js');
</script>
<script src="./node_modules/materialize-css/dist/js/materialize.min.js"></script>
<!-- ***************************************** -->
<!-- https://github.com/WhisperSystems/libsignal-protocol-javascript/issues/6 -->
<script>
window.nodeRequire = require;
delete window.require;
</script>
<script src="app/utils/libsignal-protocol.js"></script>
<script>
window.require = window.nodeRequire;
delete window.nodeRequire;
</script>
<!-- ***************************************** -->
<script>
require('babel-register');
require('./app/loader');
</script>
</head>
<body>
<div id="app"></div>
</body>
</html>