Skip to content

Commit f1bf5f5

Browse files
author
Kevin Nadro
committed
sandbox
- replace the code with html for people can click buttons and fill out fields! they won’t need to see any data/code.js files!
1 parent a82741a commit f1bf5f5

File tree

3 files changed

+29
-6
lines changed

3 files changed

+29
-6
lines changed
Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1 @@
1-
var tracer = new Array2DTracer();
21
var logger = new LogTracer();
3-
4-
var G = [[1,2,3]];
5-
6-
tracer._setData(G);

css/stylesheet.css

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,7 @@ nav h3 {
230230

231231
nav,
232232
section,
233+
.sandbox_container,
233234
.viewer_container,
234235
.editor_container {
235236
position: absolute;
@@ -249,8 +250,13 @@ section {
249250
right: 50%;
250251
}
251252

253+
.sandbox_container{
254+
left: 50%;
255+
}
256+
252257
.editor_container {
253258
left: 50%;
259+
display: none;
254260
}
255261

256262
.module_container {
@@ -657,4 +663,13 @@ input[type=number]::-webkit-outer-spin-button {
657663
top: 30px;
658664
left: 0;
659665
}
660-
}
666+
}
667+
668+
.buttonContainer{
669+
width: 75px;
670+
height: 25px;
671+
display: block;
672+
position: relative;
673+
z-index: 100;
674+
background-color: white;
675+
}

index.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,19 @@ <h3>
127127
</div>
128128
</section>
129129
</div>
130+
<div class="sandbox_container">
131+
<div>
132+
<div>
133+
# of Rows:
134+
<input id="numRows" type="number" value="0">
135+
</div>
136+
137+
<div>
138+
# of Columns:
139+
<input id="numColumns" type="number" value="0">
140+
</div>
141+
</div>
142+
</div>
130143
<div class="editor_container">
131144
<section class="files_bar">
132145
<button class="btn-left"><i class="fa fa-angle-left" aria-hidden="true"></i></button>

0 commit comments

Comments
 (0)