Fix #485: sort localized country names alphabetically

This commit is contained in:
Roman Anasal 2014-09-26 10:39:09 +02:00
parent bf00606f8d
commit f6ef43d3b0

View File

@ -2519,6 +2519,9 @@ angular.module('myApp.controllers', ['myApp.i18n'])
}
}
}
$scope.countries.sort(function(a, b) {
return a.name.localeCompare(b.name);
});
});
})