mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 18:13:05 +02:00
Remove print statements from entityList.js
This commit is contained in:
parent
aed208a339
commit
b3631de93c
1 changed files with 0 additions and 2 deletions
|
@ -28,7 +28,6 @@ EntityListTool = function(opts) {
|
||||||
type: 'selectionUpdate',
|
type: 'selectionUpdate',
|
||||||
selectedIDs: selectedIDs,
|
selectedIDs: selectedIDs,
|
||||||
};
|
};
|
||||||
print("Sending: " + JSON.stringify(data));
|
|
||||||
webView.eventBridge.emitScriptEvent(JSON.stringify(data));
|
webView.eventBridge.emitScriptEvent(JSON.stringify(data));
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -59,7 +58,6 @@ EntityListTool = function(opts) {
|
||||||
}
|
}
|
||||||
|
|
||||||
webView.eventBridge.webEventReceived.connect(function(data) {
|
webView.eventBridge.webEventReceived.connect(function(data) {
|
||||||
print("Got: " + data);
|
|
||||||
data = JSON.parse(data);
|
data = JSON.parse(data);
|
||||||
if (data.type == "selectionUpdate") {
|
if (data.type == "selectionUpdate") {
|
||||||
var ids = data.entityIds;
|
var ids = data.entityIds;
|
||||||
|
|
Loading…
Reference in a new issue