With Backbone.js I\'ve got a collection set up with a comparator function. It\'s nicely sorting the models, but I\'d like to reverse the order.
How can I sort the m
My solution was to reverse results after sort.
To prevent double rendering first sort with silent, then trigger 'reset'.
collections.sort({silent:true}) collections.models = collections.models.reverse(); collections.trigger('reset', collections, {});