forked from quoid/userscripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheditor.html
More file actions
23 lines (23 loc) · 810 Bytes
/
Copy patheditor.html
File metadata and controls
23 lines (23 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{% from "icon.html" import icon %}
{% from "button.html" import button %}
{% from "loader.html" import loader %}
{% from "tag.html" import tag %}
<div id="editor">
<div class="editor-header">
{{ tag("css") }}
{{ tag("js") }}
<div class="title truncate">init</div>
{{ icon("download", "downloadScript", "downloadScriptButton") }}
{{ icon("trash", "deleteScript", "deleteScriptButton") }}
</div>
<div id="code">
<textarea></textarea>
</div>
<div class="editor-footer">
<div id="status">init</div>
{{ button("discard", "init", true, "buttonDiscard") }}
{{ button("save", "init", true, "buttonSave") }}
</div>
<div class="empty" data-localize="noScriptSelected">init</div>
{{ loader("loader-editor") }}
</div>