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;