-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprototype.html
More file actions
44 lines (40 loc) · 2.15 KB
/
prototype.html
File metadata and controls
44 lines (40 loc) · 2.15 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
38
39
40
41
42
43
44
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="./styles/prototype.css">
<link rel="stylesheet" href="./styles/flowy.min.css">
<meta http-equiv="Content-Security-Policy" content="img-src 'self' data:; default-src 'self'; script-src file: 'sha256-VEEtZvsg4YDgzH5AyZlCsTG1av3WyaAsuq8dkJMGM9g='; style-src 'unsafe-inline' file:; font-src file:">
<meta http-equiv="X-Content-Security-Policy" content="img-src 'self' data:; default-src 'self'; script-src file: 'sha256-VEEtZvsg4YDgzH5AyZlCsTG1av3WyaAsuq8dkJMGM9g='; style-src 'unsafe-inline' file:; font-src file:">
<title>Prototype Editor</title>
</head>
<body>
<div id="leftcard">
<div id="event_listener" style="display: none;"></div>
<p id="header">Functions</p>
<div id="search"><img src="./img/search.svg"><input id="search_blocks" type="text" placeholder="Search blocks">
</div>
<div id="subnav">
<div id="built_in" class="navactive side">Built-In</div>
<div id="plugin" class="navdisabled side">Plugin</div>
<div id="custom" class="navdisabled side">Custom</div>
</div>
<div id="blocklist"></div>
<button class="delete_warning_button" id="delete_warning_button">Delete</button>
</div>
<div id="canvas" oncontextmenu="return!1">
</div>
<div id="show_card_warning_wrapper" class="show_card_warning_wrapper">
<div id="show_card_warning_container" class="show_card_warning_container">
<h2 id="show_card_warning_title" class="show_card_warning_title">Warning</h2>
<p id="show_card_warning_message" class="show_card_warning_message">Some of the functions are removed or
changed. Do you want to delete respective cards ?</p>
<button class="show_card_warning_yes" id="show_card_warning_yes">Yes</button>
<button class="show_card_warning_no" id="show_card_warning_no">No</button>
</div>
</div>
<script src="./jquery.min.js"></script>
<script src="./flowy.mod.js"></script>
<script src="./renderer/prototype_renderer.js"></script>
<script src="./materialize.min.js"></script>
</body>
</html>