-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·75 lines (71 loc) · 3.78 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
74
75
<!DOCTYPE html>
<html>
<head>
<title>InspectorWidget Iterator</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="images/favicon.ico">
<link rel="stylesheet" href="node_modules/vex-js/dist/css/vex.css" />
<link rel="stylesheet" href="node_modules/vex-js/dist/css/vex-theme-os.css" />
<link href="css/inspectorwidget-blockly.css" rel="stylesheet">
<link href="bower_components/jquery-ui/themes/smoothness/jquery-ui.css" rel="stylesheet">
<link href="bower_components/amalia.js/build/css/amalia.js.min.css" rel="stylesheet">
<link href="css/inspectorwidget-amalia.css" rel="stylesheet">
<link rel="stylesheet" href="bower_components/fontawesome/css/font-awesome.min.css" />
<link href="css/inspectorwidget-default.css" rel="stylesheet">
</head>
<body style="background-color: black;">
<div id="window" style="width:100%; height:100%;">
<div style="width:100%;" id="playercode">
<div id="player" style="width: 99%; float: left; background-color: black;">
<div id="recording" style="height: 32px;width: 100%;"> <span style="color:white">Recording: </span>
<select id="recordings">
<!-- onchange="changeRecording(this.value)"> -->
<option></option>
</select>
</div>
<div>
<div id="defaultPlayer"></div>
</div>
</div>
<div style="width: 1%;float: right;background-color: #1d1d1d;" id="code">
<div style="width: 1%;float: left;font-size: 10px;text-color: #ffffff" ; id="accessibilityViewer"></div>
<div style="width: 99%;float: right;" id="blockly">
<div id="blocklyDiv" style="width: 100%;"></div>
<xml id="toolbox" style="display: none">
<category name="Accessibility" colour="210">
<block type="accessibles_set"></block>
<block type="accessibles_get"></block>
<block type="match_accessible"></block>
<block type="accessibility_actions"></block>
</category>
<category name="Input Events" colour="80">
<block type="input_events_actions"></block>
</category>
<category name="Computer Vision" colour="280">
<block type="templates_set"></block>
<block type="templates_get"></block>
<block type="extract_test"></block>
<block type="match_template"></block>
<block type="detect_alphanum"></block>
</category>
<category name="Logic">
<block type="logic_compare"></block>
<block type="logic_operation"></block>
<block type="logic_negate"></block>
<block type="logic_boolean"></block>
</category>
</xml>
<xml id="startBlocks" style="display: none" xmlns="http://www.w3.org/1999/xhtml"> </xml>
<div id="blocklyControlsContainer">
<div id="blocklyControlsDiv" class="ajs-container middle-container"> </div>
</div>
</div>
</div>
</div>
<div id="timeline"></div>
</div>
</div>
</body>
<script src="js/inspectorwidget-init-browserified.js"></script>
</html>