Skip to content

Commit

Permalink
Fix order of search result
Browse files Browse the repository at this point in the history
  • Loading branch information
oterral committed Oct 15, 2014
1 parent 1965bf0 commit b779dda
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 b779dda

Please sign in to comment.