diff options
| author | Alon Levy <alon@pobox.com> | 2014-12-03 11:53:12 +0200 |
|---|---|---|
| committer | Alon Levy <alon@pobox.com> | 2014-12-03 11:53:12 +0200 |
| commit | 5ccdb6549eb5abf3fb561f09daf88eb38f2c27f8 (patch) | |
| tree | 8ff0060ca0d8330e4d4a31853bb4499f4fd6c477 | |
| parent | 27eb2cc7a2d8c5e1fe92e86a5203b071b0e6dd00 (diff) | |
src/main: remove search debug print
| -rw-r--r-- | src/main.js | 1 |
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 { |
