merge misc. minor changes

This commit is contained in:
rolux 2012-05-19 12:30:43 +04:00
commit 5cabb679f9
3 changed files with 17 additions and 0 deletions

View file

@ -87,6 +87,18 @@ Ox.load({UI: {showScreen: true}, Geo: {}}, function() {
};
/**/
});
/*
Ox.print(
JSON.stringify(
cities.sort(function(a, b) {
return a.country + ', ' + a.name < b.country + ', ' + b.name ? -1
: a.country + ', ' + a.name > b.country + ', ' + b.name ? 1 : 0
}).map(function(city) {
return city.name + ', ' + city.country
})
)
);
*/
var listAPI = Ox.api(cities, {
cache: true,