diff options
Diffstat (limited to 'module/web/static/js/models/Progress.js')
-rw-r--r-- | module/web/static/js/models/Progress.js | 35 |
1 files changed, 35 insertions, 0 deletions
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 |