mirror of
https://github.com/ForkAwesome/Fork-Awesome.git
synced 2024-12-25 13:01:31 +08:00
adding debounce to algolia search
This commit is contained in:
parent
84090871a9
commit
8db4458ab5
Binary file not shown.
@ -1,7 +1,6 @@
|
||||
$(function() {
|
||||
var SearchView = Backbone.View.extend({
|
||||
events: {
|
||||
"keyup #search-input": "search",
|
||||
"click #search-clear": "clear"
|
||||
},
|
||||
|
||||
@ -15,6 +14,7 @@ $(function() {
|
||||
this.$searchInputClear = this.$("#search-clear");
|
||||
this.$iconsSection = this.$("#icons");
|
||||
|
||||
this.$searchInput.on("keyup", _.debounce(_.bind(this.search, this), 200));
|
||||
this.algoliaHelper.on("result", _.bind(this.showResults, this));
|
||||
},
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user