Lidarr/UI/Release/DownloadReportCell.js

33 lines
723 B
JavaScript
Raw Normal View History

2013-06-22 06:24:24 +00:00
'use strict';
define(
[
'backgrid'
], function (Backgrid) {
return Backgrid.Cell.extend({
className: 'download-report-cell',
events: {
'click': '_onClick'
},
_onClick: function () {
var self = this;
this.$el.html('<i class =\'icon-spinner icon-spin\' />');
this.model.save().always(function () {
self.$el.html('<i class =\'icon-download-alt\' />');
});
},
render: function () {
this.$el.html('<i class =\'icon-download-alt\' />');
return this;
}
});
});