This repository was archived by the owner on Jan 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
98 lines (93 loc) · 4.26 KB
/
index.html
File metadata and controls
98 lines (93 loc) · 4.26 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
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en-GB">
<head>
<title>Test</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="/assets/css/styles.css">
</head>
<body>
<div class="container">
<div class="code-editor clearfix" data-layout="top">
<div class="code-editor__header clearfix">
<div class="code-editor__controls-col" >
<div class="btn-group">
<button title="Discard changes" class="btn code-editor__revert-btn">Revert</button>
<button title="Save as Draft" class="btn code-editor__save-btn">Save</button>
<button title="Run function" class="btn code-editor__execute-btn">Execute</button>
</div>
</div>
<div class="code-editor__controls-col code-editor__controls-col--align-right">
<div class="btn-group">
<button title="Publish function" class="btn btn-large new_but new_blue code-editor__publish-btn" {{action 'publishCode'}}>Publish</button>
</div>
</div>
<div class="code-editor__controls-col code-editor__controls-col--full-width"></div>
</div>
<div class="code-editor__body">
<div class="code-editor__resizer-controls-wrapper">
<div class="btn-group code-editor__resizer-controls">
<div class="code-editor__handle"></div>
<div class="code-editor__handle"></div>
<div class="code-editor__handle"></div>
</div>
</div>
<div class="code-editor__panels">
<div class="code-editor-panel">
<div class="code-editor-panel__header">
<span class="code-editor-panel__label">Label</span>
</div>
<div class="code-editor-panel__body">
<div class="code-editor-panel__codeblock" id="CodeBlockCode" data-mode="javascript">
</div>
</div>
</div>
<div class="code-editor-panel">
<div class="code-editor-panel__header">
<span class="code-editor-panel__label">Label</span>
</div>
<div class="code-editor-panel__body">
<div class="code-editor-panel__codeblock" id="CodeBlockInput" data-mode="json">
</div>
</div>
</div>
<div class="code-editor-panel">
<div class="code-editor-panel__header">
<span class="code-editor-panel__label">Label</span>
</div>
<div class="code-editor-panel__body">
<div class="code-editor-panel__codeblock" id="CodeBlockOutput" data-mode="json">
</div>
</div>
</div>
<div class="code-editor-panel">
<div class="code-editor-panel__header">
<span class="code-editor-panel__label">Label</span>
</div>
<div class="code-editor-panel__body">
<div class="code-editor-panel__codeblock" id="CodeBlockLog" data-mode="text">
</div>
</div>
</div>
</div>
</div>
<div class="code-editor__footer clearfix">
<div class="code-editor__controls-col">
<p class="code-editor__document-status">Lorem Ipsum</p>
</div>
<div class="code-editor__controls-col code-editor__controls-col--align-right">
<button class="new_but new_blue code-editor__layout-btn" title="split" data-layouttoggle="split"><span class="hide-text">split</span></button>
<button class="new_but new_blue code-editor__layout-btn selected" title="top" data-layouttoggle="top"><span class="hide-text">top</span></button>
<button class="new_but new_blue code-editor__layout-btn" title="bottom" data-layouttoggle="bottom"><span class="hide-text">bottom</span></button>
<button class="new_but new_blue code-editor__layout-btn code-editor__fullscreen-btn" title="toggle fullscreen"><i class="fa fa-expand"></i></button>
</div>
</div>
</div>
</div>
<script src="/assets/js/libs/jquery.min.js"></script>
<script src="/assets/js/libs/draggabilly.pkgd.min.js"></script>
<script src="/assets/js/modules/module.draggablePanels.js"></script>
<script src="/assets/js/app.js"></script>
</body>
</html>