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/models/Progress.js | 35 +++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 module/web/static/js/models/Progress.js (limited to 'module/web/static/js/models/Progress.js') diff --git a/module/web/static/js/models/Progress.js b/module/web/static/js/models/Progress.js new file mode 100644 index 000000000..ebbe34862 --- /dev/null +++ b/module/web/static/js/models/Progress.js @@ -0,0 +1,35 @@ +define(['jquery', 'backbone', 'underscore'], function($, Backbone, _) { + + return Backbone.Model.extend({ + +// TODO +// idAttribute: 'fid', + + defaults: { + plugin: null, + name: null, + statusmsg: -1, + eta: -1, + done: -1, + total: -1, + download: null + }, + + + // Model Constructor + initialize: function() { + + }, + + // Any time a model attribute is set, this method is called + validate: function(attrs) { + + }, + + isDownload : function() { + return this.has('download') + } + + }); + +}); \ No newline at end of file -- cgit v1.2.3