-
-
Notifications
You must be signed in to change notification settings - Fork 657
Closed
Description
When attempting to search through the bar in the top menu, it fails with an error of 'search is not a function'. The thing is, window.search
is a function, and I can use it through DevTools. One solution that works (on my machine, at least) is to change the keyup
event on input#search
here:
@keyup="search(event).then(function({ results: hits }) { results = true; threads = hits[0].hits; articles = hits[1].hits; })" |
to explicitly reference
window.search
instead of just search
.Metadata
Metadata
Assignees
Labels
No labels