forked from noflo/noflo-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.dist.html
74 lines (70 loc) · 4.29 KB
/
index.dist.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
74
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>$NOFLO_APP_TITLE v$NOFLO_APP_VERSION</title>
<link href="https://github.com/noflo/noflo-ui" rel="source" />
<meta name="description" content="$NOFLO_APP_DESCRIPTION">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no, minimal-ui" />
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="format-detection" content="telephone=no">
<meta name="mobile-web-app-capable" content="yes">
<meta name="theme-color" content="hsl(190, 90%, 45%)">
<link rel="manifest" href="manifest.webapp.json">
<link rel="apple-touch-icon" href="app/$NOFLO_THEME-60.png">
<link rel="apple-touch-icon" sizes="120x120" href="app/$NOFLO_THEME-120.png">
<link rel="apple-touch-icon" sizes="144x144" href="app/$NOFLO_THEME-144.png">
<link rel="apple-touch-icon" sizes="152x152" href="app/$NOFLO_THEME-152.png">
<link rel="icon" sizes="192x192" href="app/$NOFLO_THEME-192.png">
<link rel="icon" sizes="128x128" href="app/$NOFLO_THEME-128.png">
<link rel="shortcut icon" href="$NOFLO_THEME.ico" />
<script src="node_modules/webcomponents.js/webcomponents.min.js"></script>
<link rel="import" href="bower_components/polymer/polymer.html">
<script src="bower_components/klayjs-noflo/klay-noflo.js"></script>
<script src="bower_components/hammerjs/hammer.js"></script>
<script src="bower_components/react/react-with-addons.js"></script>
<script src="bower_components/ease-djdeath/index.js"></script>
<script src="bower_components/react.animate-djdeath/react.animate.js"></script>
<script src="node_modules/indexeddbshim/dist/indexeddbshim.min.js"></script>
<script>
if (navigator.vendor && navigator.vendor.indexOf('Apple') !== -1) {
console.log('Safari detected, replacing broken IndexedDB with shim');
window.shimIndexedDB.__useShim();
}
</script>
<script src="bower_components/rtc/dist/rtc.js"></script>
<script src="./browser/noflo-ui.js"></script>
<script src="../bower_components/codemirror/lib/codemirror.js"></script>
<script src="../bower_components/codemirror/mode/xml/xml.js"></script>
<script src="../bower_components/codemirror/mode/javascript/javascript.js"></script>
<script src="../bower_components/codemirror/mode/css/css.js"></script>
<script src="../bower_components/codemirror/mode/vbscript/vbscript.js"></script>
<script src="../bower_components/codemirror/mode/coffeescript/coffeescript.js"></script>
<script src="../bower_components/codemirror/mode/clike/clike.js"></script>
<script src="../bower_components/codemirror/mode/htmlmixed/htmlmixed.js"></script>
<script src="../bower_components/codemirror/mode/smalltalk/smalltalk.js"></script>
<script src="../bower_components/codemirror/mode/yaml/yaml.js"></script>
<script src="../bower_components/codemirror/mode/python/python.js"></script>
<script src="../bower_components/coffee-script/extras/coffee-script.js"></script>
<script src="../bower_components/coffeelint/js/coffeelint.js"></script>
<script src="../bower_components/jshint/dist/jshint.js"></script>
<link rel="stylesheet" href="../bower_components/codemirror/addon/lint/lint.css">
<script src="../bower_components/codemirror/addon/lint/lint.js"></script>
<script src="../bower_components/codemirror/addon/lint/javascript-lint.js"></script>
<script src="../bower_components/codemirror/addon/lint/coffeescript-lint.js"></script>
<script src="../bower_components/codemirror/addon/lint/yaml-lint.js"></script>
<link rel="import" href="elements/noflo-ui.html">
<link rel="import" href="browser/noflo-noflo-polymer/noflo-polymer/noflo-polymer.html">
<noflo-polymer name="noflo-ui" inports="user context width height" outports="event"></noflo-polymer>
<link rel="import" href="./css/font-awesome-shadow.html">
<link rel="stylesheet" href="./css/noflo-ui.css">
<link rel="import" href="./css/noflo-ui-shadow.html">
</head>
<body class="$NOFLO_THEME">
<!-- $NOFLO_APP_ANALYTICS -->
<div id="loading">$NOFLO_APP_LOADING</div>
<noflo-ui id="container"></noflo-ui>
<script src="app/main.js"></script>
</body>
</html>