From f57905fbb3225a176587ae7775f61c0e0e19ddd2 Mon Sep 17 00:00:00 2001 From: Faye Li Date: Mon, 20 Mar 2017 10:23:55 -0700 Subject: [PATCH] remove code for jump to selection --- scripts/system/html/entityList.html | 1 - scripts/system/html/js/entityList.js | 4 ---- 2 files changed, 5 deletions(-) diff --git a/scripts/system/html/entityList.html b/scripts/system/html/entityList.html index bdd01bc7d2..9d774f1861 100644 --- a/scripts/system/html/entityList.html +++ b/scripts/system/html/entityList.html @@ -25,7 +25,6 @@ - diff --git a/scripts/system/html/js/entityList.js b/scripts/system/html/js/entityList.js index a371b3bdc9..c6692fc26e 100644 --- a/scripts/system/html/js/entityList.js +++ b/scripts/system/html/js/entityList.js @@ -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'})); }