var PlaceCollection = Backbone.Collection.extend({
    model: PlaceModel,
    
    comparator: function(place){
        return place.get("full_name"); // Add minus if reorder: return -place.get.....
    }
});
