Browse Source

Fix advanced-search form query bug.

Fix:
        static/js/index.advanced-search-form.js
                -Clicking the "submit" button in the advanced-search form didn't
                actually populate the results div because of an incorrect call
                to `queryServer()` instead of `populateResults()`.
tags/v1.0^2
Severyn Kozak 10 years ago
parent
commit
c1764c8b6a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      static/js/index.advanced-search-form.js

+ 1
- 1
static/js/index.advanced-search-form.js View File

@@ -96,7 +96,7 @@ loadInputFieldWidgets();
$("div#advanced-search").hide();
advancedSearchButton.removeClass("clicked");
assembleQuery();
queryServer();
populateResults();
})

var previousAdvancedQuery = "";


Loading…
Cancel
Save