summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlon Levy <alon@pobox.com>2014-12-03 11:53:12 +0200
committerAlon Levy <alon@pobox.com>2014-12-03 11:53:12 +0200
commit5ccdb6549eb5abf3fb561f09daf88eb38f2c27f8 (patch)
tree8ff0060ca0d8330e4d4a31853bb4499f4fd6c477 /src
parent27eb2cc7a2d8c5e1fe92e86a5203b071b0e6dd00 (diff)
src/main: remove search debug print
Diffstat (limited to 'src')
-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 {