Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/blame/commit/fc3ad9023dda85f9ddf89336869cb9665de28742/UI/Commands/CommandMessengerCollectionView.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Lidarr/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});
});