Skip to content

Commit d57599e

Browse files
add results to interface.html
1 parent b3a8308 commit d57599e

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

interface.html

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,18 @@
8181
line-height: 1.6;
8282
outline: none;
8383
}
84+
.scene-input {
85+
margin: 40px;
86+
padding: 40px;
87+
background-color: #f2f3f5;
88+
border: 0;
89+
border-radius: 40px;
90+
color: #5c5c6e;
91+
font-family: inherit;
92+
font-size: inherit;
93+
line-height: 1.6;
94+
outline: none;
95+
}
8496
.radios {
8597
display: flex;
8698
margin: 40px;
@@ -224,6 +236,9 @@
224236
{{#tab1}}
225237
<input type=text class=url-input id=url-input>
226238
{{/tab1}}
239+
{{#tab2}}
240+
<input type=text class=scene-input id=scene-input>
241+
{{/tab2}}
227242
<div class=radios>
228243
<a id=tab-1 class="radio {{#tab1}}selected{{/tab1}}">WebXR</a>
229244
<a id=tab-2 class="radio {{#tab2}}selected{{/tab2}}">Actions</a>
@@ -280,6 +295,21 @@ <h3>Paste scene</h3>
280295
</div>
281296
</a>
282297
</div>
298+
<div class=results>
299+
<ul>
300+
{{#searchResults}}
301+
<li>
302+
<a href="{{{url}}}" name="{{{label}}}">
303+
<img src="{{{icon}}}">
304+
<div class=wrap>
305+
<h3>{{label}}</h3>
306+
<p>{{{url}}}</p>
307+
</div>
308+
</a>
309+
</li>
310+
{{/searchResults}}
311+
</ul>
312+
</div>
283313
{{/tab2}}
284314
{{#tab4}}
285315
<div class=metasites>

0 commit comments

Comments
 (0)