2013-06-22 09:24:24 +03:00
|
|
|
'use strict';
|
2013-06-09 23:51:32 +03:00
|
|
|
|
2013-06-25 02:41:59 +03:00
|
|
|
define(
|
|
|
|
[
|
|
|
|
'backgrid'
|
|
|
|
], function (Backgrid) {
|
|
|
|
return Backgrid.Cell.extend({
|
2013-06-09 23:51:32 +03:00
|
|
|
|
2013-06-25 02:41:59 +03:00
|
|
|
className: 'download-report-cell',
|
2013-06-09 23:51:32 +03:00
|
|
|
|
2013-06-25 02:41:59 +03:00
|
|
|
events: {
|
|
|
|
'click': '_onClick'
|
|
|
|
},
|
2013-06-09 23:51:32 +03:00
|
|
|
|
2013-06-25 02:41:59 +03:00
|
|
|
_onClick: function () {
|
2013-06-09 23:51:32 +03:00
|
|
|
|
2013-06-25 02:41:59 +03:00
|
|
|
var self = this;
|
2013-06-09 23:51:32 +03:00
|
|
|
|
2013-07-17 09:41:40 +03:00
|
|
|
this.$el.html('<i class="icon-spinner icon-spin" />');
|
|
|
|
var promise = this.model.save();
|
|
|
|
|
|
|
|
promise.done(function () {
|
|
|
|
self.$el.html('<i class="icon-ok" title="Added to downloaded queue" />');
|
|
|
|
});
|
|
|
|
|
|
|
|
promise.fail(function () {
|
|
|
|
self.$el.html('<i class="icon-download-alt" title="Add to download queue" />');
|
2013-07-03 03:44:22 +03:00
|
|
|
});
|
2013-06-25 02:41:59 +03:00
|
|
|
},
|
2013-06-09 23:51:32 +03:00
|
|
|
|
2013-06-25 02:41:59 +03:00
|
|
|
render: function () {
|
2013-06-09 23:51:32 +03:00
|
|
|
|
2013-07-17 09:41:40 +03:00
|
|
|
this.$el.html('<i class="icon-download-alt" title="Add to download queue" />');
|
2013-06-25 02:41:59 +03:00
|
|
|
return this;
|
2013-06-15 02:18:37 +03:00
|
|
|
|
2013-06-25 02:41:59 +03:00
|
|
|
}
|
|
|
|
});
|
2013-06-15 02:18:37 +03:00
|
|
|
});
|