mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-10 10:13:23 +02:00
remove code for jump to selection
This commit is contained in:
parent
197a06c423
commit
f57905fbb3
2 changed files with 0 additions and 5 deletions
|
@ -25,7 +25,6 @@
|
||||||
<input type="button" id="visible" class="glyph" value="" />
|
<input type="button" id="visible" class="glyph" value="" />
|
||||||
</div>
|
</div>
|
||||||
<input type="button" id="export" value="Export Selection" />
|
<input type="button" id="export" value="Export Selection" />
|
||||||
<input type="button" id="teleport" value="Jump to Selection" style="display: none"/>
|
|
||||||
<input type="button" id="pal" class="glyph" value="" />
|
<input type="button" id="pal" class="glyph" value="" />
|
||||||
<input type="button" class="red" id="delete" value="Delete" />
|
<input type="button" class="red" id="delete" value="Delete" />
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -39,7 +39,6 @@ function loaded() {
|
||||||
elFilter = document.getElementById("filter");
|
elFilter = document.getElementById("filter");
|
||||||
elInView = document.getElementById("in-view")
|
elInView = document.getElementById("in-view")
|
||||||
elRadius = document.getElementById("radius");
|
elRadius = document.getElementById("radius");
|
||||||
elTeleport = document.getElementById("teleport");
|
|
||||||
elExport = document.getElementById("export");
|
elExport = document.getElementById("export");
|
||||||
elPal = document.getElementById("pal");
|
elPal = document.getElementById("pal");
|
||||||
elEntityTable = document.getElementById("entity-table");
|
elEntityTable = document.getElementById("entity-table");
|
||||||
|
@ -274,9 +273,6 @@ function loaded() {
|
||||||
elToggleVisible.onclick = function () {
|
elToggleVisible.onclick = function () {
|
||||||
EventBridge.emitWebEvent(JSON.stringify({ type: 'toggleVisible' }));
|
EventBridge.emitWebEvent(JSON.stringify({ type: 'toggleVisible' }));
|
||||||
}
|
}
|
||||||
elTeleport.onclick = function () {
|
|
||||||
EventBridge.emitWebEvent(JSON.stringify({ type: 'teleport' }));
|
|
||||||
}
|
|
||||||
elExport.onclick = function() {
|
elExport.onclick = function() {
|
||||||
EventBridge.emitWebEvent(JSON.stringify({ type: 'export'}));
|
EventBridge.emitWebEvent(JSON.stringify({ type: 'export'}));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue