Skip to content

Commit

Permalink
Fix issue #1492 where ampersand in autocomplete search wasn't working.
Browse files Browse the repository at this point in the history
  • Loading branch information
ryancramerdesign committed Nov 6, 2015
1 parent bf4b3e1 commit 96b71af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ var InputfieldPageAutocomplete = {
// AND words mode
term = term.replace(/\s+/, ',');
}
term = encodeURIComponent(term);
var ajaxURL = url + '&' + searchField + operator + term;

$.getJSON(ajaxURL, function(data) {
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 96b71af

Please sign in to comment.