From c9ec96cab3c66a355cd7c489d67dd7ffa3cb7c93 Mon Sep 17 00:00:00 2001 From: Steve Howell Date: Tue, 16 Jul 2013 18:32:56 -0400 Subject: [PATCH] search.js: Eliminate get_query and get_person (imported from commit c785f33378a0a5a436d9a7cb236a4af29c94921a) --- zephyr/static/js/search.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/zephyr/static/js/search.js b/zephyr/static/js/search.js index 8d5c68a86b..2c2ebfdf96 100644 --- a/zephyr/static/js/search.js +++ b/zephyr/static/js/search.js @@ -11,14 +11,6 @@ var current_search_term; // Data storage for the typeahead -- to go from object to string representation and vice versa. var search_object = {}; -function get_query(obj) { - return obj.query; -} - -function get_person(obj) { - return typeahead_helper.render_person(obj.query); -} - function phrase_match(phrase, q) { // match "tes" to "test" and "stream test" but not "hostess" var i;