From 6e285380631fa19b94708a326401098c551d906e Mon Sep 17 00:00:00 2001 From: Andrew Meadows Date: Tue, 26 Apr 2016 11:22:45 -0700 Subject: [PATCH] support toggling locked and visible properties --- scripts/default/libraries/entityList.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/scripts/default/libraries/entityList.js b/scripts/default/libraries/entityList.js index 78a8aa5a6a..00120ab4c2 100644 --- a/scripts/default/libraries/entityList.js +++ b/scripts/default/libraries/entityList.js @@ -59,8 +59,6 @@ EntityListTool = function(opts) { name: properties.name, type: properties.type, url: properties.type == "Model" ? properties.modelURL : "", - locked: properties.locked, - visible: properties.visible }); } @@ -101,10 +99,6 @@ EntityListTool = function(opts) { } } else if (data.type == "delete") { deleteSelectedEntities(); - } else if (data.type == "toggleLocked") { - toggleSelectedEntitiesLocked(); - } else if (data.type == "toggleVisible") { - toggleSelectedEntitiesVisible(); } else if (data.type === "radius") { searchRadius = data.radius; that.sendUpdate();