remove code for jump to selection

This commit is contained in:
Faye Li 2017-03-20 10:23:55 -07:00
parent 197a06c423
commit f57905fbb3
2 changed files with 0 additions and 5 deletions

View file

@ -25,7 +25,6 @@
<input type="button" id="visible" class="glyph" value="&#xe007;" />
</div>
<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="&#xe00c;" />
<input type="button" class="red" id="delete" value="Delete" />
</div>

View file

@ -39,7 +39,6 @@ function loaded() {
elFilter = document.getElementById("filter");
elInView = document.getElementById("in-view")
elRadius = document.getElementById("radius");
elTeleport = document.getElementById("teleport");
elExport = document.getElementById("export");
elPal = document.getElementById("pal");
elEntityTable = document.getElementById("entity-table");
@ -274,9 +273,6 @@ function loaded() {
elToggleVisible.onclick = function () {
EventBridge.emitWebEvent(JSON.stringify({ type: 'toggleVisible' }));
}
elTeleport.onclick = function () {
EventBridge.emitWebEvent(JSON.stringify({ type: 'teleport' }));
}
elExport.onclick = function() {
EventBridge.emitWebEvent(JSON.stringify({ type: 'export'}));
}