This repository was archived by the owner on Dec 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (31 loc) · 1.28 KB
/
index.html
File metadata and controls
36 lines (31 loc) · 1.28 KB
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 charset="UTF-8" />
<title>WasmFiddle</title>
</head>
<body>
<div id="app" class="appWrapper"></div>
<link type="text/css" rel="stylesheet" href="lib/app.css" />
<!-- Dependencies -->
<script src="./lib/react.js"></script>
<script src="./lib/react-dom.js"></script>
<script src="lib/src-noconflict/ace.js" type="text/javascript" charset="utf-8"></script>
<script src="lib/src-noconflict/ext-language_tools.js"></script>
<script src="lib/mousetrap.min.js"></script>
<script src="https://use.fontawesome.com/d0dc131437.js"></script>
<!-- Main -->
<script src="./dist/bundle.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-93230088-2', 'auto');
ga('send', 'pageview');
window.addEventListener('serviceevent', function (e) {
ga('send', 'event', e.detail.category, e.detail.action, e.detail.label);
});
</script>
</body>
</html>