extrapole
clone your own copy | download snapshot

Snapshots | iceberg

No images in this repository’s iceberg at this time

Inside this repository

collections.js
application/javascript

Download raw (232 bytes)

/*
 * 
 * collections
 * 
 */


var app = app || {}

app.MessageList = Backbone.Collection.extend({
    url:'/maildir/',
    model:app.Message,
    comparator: function( msg ) {
        return msg.get('timestamp') * -1;
    }
});