Skip to content

Commit

Permalink
Merge pull request #1770 from geoadmin/fix_searchorder
Browse files Browse the repository at this point in the history
Fix order of search result
  • Loading branch information
oterral committed Oct 15, 2014
2 parents 1965bf0 + b779dda commit f13ab5d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/js/SearchController.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
applyTopicToUrl: function (url, topic) {
return url.replace(topicPlaceHolder, topic);
},
featuresMinLength: 1,
locationsMinLength: 2,
layersMinLength: 2,
featuresMinLength: (gaBrowserSniffer.mobile) ? 2 : 1,
locationsMinLength: (gaBrowserSniffer.mobile) ? 2 : 1,
layersMinLength: (gaBrowserSniffer.mobile) ? 2 : 1,
rateLimitWait: (gaBrowserSniffer.mobile) ? 500 : 300,
renderWait: (gaBrowserSniffer.mobile) ? 500 : 0
};
Expand Down

0 comments on commit f13ab5d

Please sign in to comment.