summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2013-05-14 15:23:39 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2013-05-14 15:23:39 -0400
commitf3e2b009aa0079d5300a9da1e082893e909886d8 (patch)
treef31edb02a621419c8a70118a8c1511ac4f4d03d7
parent032fb82af97c5fd949addd8cb1c1241311c96108 (diff)
downloadaskbot-f3e2b009aa0079d5300a9da1e082893e909886d8.tar.gz
askbot-f3e2b009aa0079d5300a9da1e082893e909886d8.tar.bz2
askbot-f3e2b009aa0079d5300a9da1e082893e909886d8.zip
fixed tag search UI
-rw-r--r--askbot/media/js/live_search.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/askbot/media/js/live_search.js b/askbot/media/js/live_search.js
index 1aebb6ce..b812070c 100644
--- a/askbot/media/js/live_search.js
+++ b/askbot/media/js/live_search.js
@@ -409,7 +409,7 @@ FullTextSearch.prototype.runTagSearch = function() {
url: url,
dataType: 'json',
success: function(data, text_status, xhr){
- me.renderFullTextResult(data, text_status, xhr);
+ me.renderFullTextSearchResult(data, text_status, xhr);
$('#ab-tag-search').val('');
},
});
@@ -445,7 +445,7 @@ FullTextSearch.prototype.activateTagSearchInput = function() {
matchInside: true,
maxCacheLength: 100,
maxItemsToShow: 20,
- onItemSelect: function(){ this.runTagSearch(); },
+ onItemSelect: function(){ me.runTagSearch(); },
delay: 10
});
ac.decorate($('#ab-tag-search'));