Skip to content
This repository has been archived by the owner on Nov 17, 2020. It is now read-only.

Commit

Permalink
Add missing parameter
Browse files Browse the repository at this point in the history
Fixes #49
  • Loading branch information
mpetrovich committed Aug 9, 2018
1 parent 2224b5e commit 3d4e323
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/assets/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
})();

// Search filter
$('.i-sidebar-item-filter').keyup(function() {
$('.i-sidebar-item-filter').keyup(function(event) {
var $input = $(this);
var query = $input.val().trim();
var selector = query ? '[data-filter-value*="' + query + '" i]' : '[data-filter-value]';
Expand Down

0 comments on commit 3d4e323

Please sign in to comment.