Skip to content

Commit

Permalink
Fix Private Channel List Submit
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinSchoeler committed Jul 6, 2017
1 parent a3b64c0 commit 7792d81
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ Template.listPrivateGroupsFlex.events({

'keyup #channel-search': _.debounce((e, instance) => instance.nameFilter.set($(e.currentTarget).val()), 300),

'submit .search-form'(e) {
return e.preventDefault();
},

'change #sort'(e, instance) {
return instance.sort.set($(e.currentTarget).val());
}
Expand Down

0 comments on commit 7792d81

Please sign in to comment.