Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/src/commit/add4c385899fed1e8e18907dc148cdf0684ad07e/UI/Series/Index/List/ItemView.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/UI/Series/Index/List/ItemView.js

29 lines
731 B

'use strict';
define(
[
'app',
'marionette',
], function (App, Marionette) {
return Marionette.ItemView.extend({
template: 'Series/Index/List/ItemTemplate',
ui: {
'progressbar': '.progress .bar'
},
events: {
'click .x-edit' : 'editSeries',
'click .x-remove': 'removeSeries'
},
editSeries: function () {
App.vent.trigger(App.Commands.EditSeriesCommand, {series: this.model});
},
removeSeries: function () {
App.vent.trigger(App.Commands.DeleteSeriesCommand, {series: this.model});
}
});
});