-
-
Notifications
You must be signed in to change notification settings - Fork 659
TypeError: search is not a function #784
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Thanks for letting us know. We'll check in on this. |
Should I create a PR? |
Yes, thank you! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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 thekeyup
event oninput#search
here:laravel.io/resources/views/_partials/_search.blade.php
Line 11 in d05a9dc
to explicitly reference
window.search
instead of justsearch
.The text was updated successfully, but these errors were encountered: