Skip to content

Commit

Permalink
Fix the extended ppchooser search for IE11
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Van Campenhout committed Oct 9, 2017
1 parent 0472ee1 commit 5d0bd59
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const initSearch = (ppChooser) => {
});

const searchField = ppChooser.querySelector(SELECTORS.PP_SEARCH_FIELD);
ppList = ppChooser.querySelectorAll(SELECTORS.PP_SEARCH_ITEM);
ppList = Array.prototype.slice.call(ppChooser.querySelectorAll(SELECTORS.PP_SEARCH_ITEM));

const fuse = new Fuse(ppTypes, {
keys: [{
Expand Down

0 comments on commit 5d0bd59

Please sign in to comment.