Searchbar not working on pages other than questions
Is there some Javascript magic I need to do in order to make the search bar work on an arbitrary page derived from "two_column_body.html"?
The issue I'm seeing is that on other pages, when I search for anything, the result always display all questions. I noticed that the GET URL issued is different than when I'm on the questions screen:
- Not working: GET /questions/?search=&query=asdf
- Working: GET /questions/scope:all/sort:activity-desc/query:asdf/page:1/
Comments
Problem looks like missing interaction with live_search.js, which rewrites the request url. Could someone please give a primer on how we're supposed to configure this script to get search working on an arbitrary page?
I think we should just do a non-js search in those cases - using traditional form submit with "GET" method.