From b3631de93c4564e6b53d01acc56819941e0db5a1 Mon Sep 17 00:00:00 2001 From: Ryan Huffman Date: Fri, 6 Mar 2015 12:03:36 -0800 Subject: [PATCH] Remove print statements from entityList.js --- examples/libraries/entityList.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/examples/libraries/entityList.js b/examples/libraries/entityList.js index 8fbc40698f..942edf18b6 100644 --- a/examples/libraries/entityList.js +++ b/examples/libraries/entityList.js @@ -28,7 +28,6 @@ EntityListTool = function(opts) { type: 'selectionUpdate', selectedIDs: selectedIDs, }; - print("Sending: " + JSON.stringify(data)); webView.eventBridge.emitScriptEvent(JSON.stringify(data)); }); @@ -59,7 +58,6 @@ EntityListTool = function(opts) { } webView.eventBridge.webEventReceived.connect(function(data) { - print("Got: " + data); data = JSON.parse(data); if (data.type == "selectionUpdate") { var ids = data.entityIds;