Skip to content
Snippets Groups Projects
Commit 09fd3a4d authored by Anton Sarukhanov's avatar Anton Sarukhanov
Browse files

Fix stops alpha-sort for cross-browser support.

parent 6baf1bfb
No related branches found
No related tags found
1 merge request!1Implemented Embed-code generator interface
......@@ -22,7 +22,11 @@ BusMap.Embed = function(opts) {
var populateOptions = function() {
var stops = window._busmap.stops;
stops = Object.keys(stops).map(function(i){return stops[i]});
stops.sort(function(a,b){ return a.title > b.title; });
stops = stops.sort(function(a,b){
if (a.title > b.title) return 1;
else if (a.title < b.title) return -1;
return 0;
});
for (id in stops) {
var s = stops[id];
var opt = $('<option value="' + s.id + '">' + s.title + '</option>');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment