search.js: Eliminate get_query and get_person

(imported from commit c785f33378a0a5a436d9a7cb236a4af29c94921a)
This commit is contained in:
Steve Howell 2013-07-16 18:32:56 -04:00
parent 98d2c5361f
commit c9ec96cab3
1 changed files with 0 additions and 8 deletions

View File

@ -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;