summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/main.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/main.js b/src/main.js
index edb76e97..4f58c7e0 100644
--- a/src/main.js
+++ b/src/main.js
@@ -39,7 +39,6 @@ function(textanalysis_ui, textanalysis, buttons, history, drag_n_drop,
$('#search').on('input', function(e) {
var text = this.value,
r = new RegExp(text.replace(' ', '|')); // TODO fails for quotes
- console.log('search: ' + text);
if (text.length > 0) {
selection.byVisitors(function (n) { return n.name.match(r); });
} else {