Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/src/commit/577761c3f2fc92e0768b02c1d232ba46e3ef348f/UI/Release/DownloadReportCell.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Readarr/UI/Release/DownloadReportCell.js

33 lines
779 B

'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\' title=\'Add to download queue\' />');
});
},
render: function () {
this.$el.html('<i class =\'icon-download-alt\' title=\'Add to download queue\' />');
return this;
}
});
});