From 5ccdb6549eb5abf3fb561f09daf88eb38f2c27f8 Mon Sep 17 00:00:00 2001 From: Alon Levy Date: Wed, 3 Dec 2014 11:53:12 +0200 Subject: src/main: remove search debug print --- src/main.js | 1 - 1 file changed, 1 deletion(-) (limited to 'src') 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 { -- cgit v1.3.1