-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (36 loc) · 1.47 KB
/
Copy pathindex.html
File metadata and controls
37 lines (36 loc) · 1.47 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
37
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Three.js explorer v0.0.2</title>
<link rel="preload" as="font" href="css/RobotoMono-Medium.woff2" type="font/woff2" />
<link rel="stylesheet" href="vendor/golden-layout/css/goldenlayout-base.css" />
<link rel="stylesheet" href="vendor/golden-layout/css/themes/goldenlayout-dark-theme.css" />
<link rel="stylesheet" href="vendor/jquery.fancytree/skin-lion/ui.fancytree.css" />
<link rel="stylesheet" href="css/main.css" />
</head>
<body>
<script>
const $ = require('jquery');
window.$ = $;
const fs = require('fs-extra');
const path = require('path');
const process = require('process');
const dJSON = require('dirty-json');
const request = require('request');
const remoteFileSize = require('remote-file-size');
const extractZip = require('extract-zip');
const GoldenLayout = require('golden-layout');
const fancytree = require('jquery.fancytree');
require('jquery.fancytree/dist/modules/jquery.fancytree.filter');
require('jquery.fancytree/dist/modules/jquery.fancytree.childcounter');
</script>
<script src="./vendor/js-signals/signals.js"></script>
<script src="./views/ThreeDownloader.js"></script>
<script src="./views/CodeEditor.js"></script>
<script src="./views/CodeEditorView.js"></script>
<script src="./views/ExamplesTreeView.js"></script>
<script src="./views/ExamplesMainView.js"></script>
<script src="./renderer.js"></script>
</body>
</html>