-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
73 lines (59 loc) · 2.52 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
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<!--
Copyright OpenJS Foundation and other contributors, https://openjsf.org/
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<title>Node-RED</title>
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon-16x16.png">
<link rel="manifest" href="/favicon/site.webmanifest">
<link rel="icon" type="image/png" href="favicon.ico">
<link rel="mask-icon" href="/red/images/node-red-icon-black.svg" color="#8f0000">
<link rel="stylesheet" href="/vendor/jquery/css/base/jquery-ui.min.css?v=">
<link rel="stylesheet" href="/vendor/font-awesome/css/font-awesome.min.css?v=">
<link rel="stylesheet" href="/red/style.min.css?v=">
<link rel="stylesheet" href="/vendor/monaco/style.css?v=">
<!--
The following are additions for the server-less Node-RED instance
-->
<script type='module'>
import X2JS from "/x2js/xml2json.esm.js";
window.x2js = new X2JS({
emptyNodeForm: 'undefined',
emptyArrayKeepTag: true
});
</script>
<script src="/jsonata/jsonata.min.js"></script>
<script src="/papaparse/papaparse.min.js"></script>
<script src="/red/taken_from_nodered_backend.js"></script>
</head>
<body spellcheck="false">
<div id="red-ui-editor"></div>
<script src="/vendor/js-yaml/js-yaml.min.js"></script>
<script src="/vendor/vendor.js?v="></script>
<script src="/vendor/monaco/monaco-bootstrap.js?v="></script>
<script src="/red/deadred.js?v="></script>
<script src="/red/red.cdn.js?v="></script>
<script src="/red/main.min.js?v="></script>
<script type='module'>
import mustache from "/vendor/mustache/4.2.0.min.js";
window.Mustache = mustache
</script>
</body>
</html>