When I click the search button nothing happens.
Then I noticed a 404-error to localhost/nounproject/search.
That file doesn't exist on my server.
I have localhost/drupal/nounproject/search

$.getJSON('/nounproject/search/?search=' + encodeURIComponent(text), function(data){

I think that the above code should not be absolute but relative:

$.getJSON('nounproject/search/?search=' + encodeURIComponent(text), function(data){

Greetings!

Comments

josegaert’s picture

Status: Active » Needs review

I took the liberty to change this in my last commit.