Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/blame/commit/88b9104bc9353bc7b107c92a303e417447a7c300/UI/Commands/CommandMessengerCollectionView.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/UI/Commands/CommandMessengerCollectionV...

16 lines
423 B

12 years ago
'use strict';
define(
[
'app',
'marionette',
'Commands/CommandCollection',
'Commands/CommandMessengerItemView'
], function (App, Marionette, commandCollection, CommandMessengerItemView) {
var CollectionView = Marionette.CollectionView.extend({
itemView : CommandMessengerItemView
});
new CollectionView({collection: commandCollection});
});