From ceb59ee0739546368135b0d86a69b17c92bfbccf Mon Sep 17 00:00:00 2001 From: RaNaN Date: Thu, 20 Dec 2012 15:33:01 +0100 Subject: added models and collections for progress --- module/web/static/js/collections/ProgressList.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 module/web/static/js/collections/ProgressList.js (limited to 'module/web/static/js/collections/ProgressList.js') diff --git a/module/web/static/js/collections/ProgressList.js b/module/web/static/js/collections/ProgressList.js new file mode 100644 index 000000000..1706d5f16 --- /dev/null +++ b/module/web/static/js/collections/ProgressList.js @@ -0,0 +1,17 @@ +define(['jquery', 'backbone', 'underscore', 'models/Progress'], function($, Backbone, _, Progress) { + + return Backbone.Collection.extend({ + + model: Progress, + + comparator: function(progress) { + return progress.get('eta'); + }, + + initialize: function() { + + } + + }); + +}); \ No newline at end of file -- cgit v1.2.3