Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/0208ae8347252f8bb28a52eed3d20362cd5641e3?style=unified&whitespace=ignore-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
8 changed files with
23 additions and
31 deletions
@ -6,8 +6,9 @@ define(
'AddSeries/RootFolders/CollectionView' ,
'AddSeries/RootFolders/Collection' ,
'AddSeries/RootFolders/Model' ,
'Shared/LoadingView' ,
'Mixins/AutoComplete'
] , function ( Marionette , RootFolderCollectionView , RootFolderCollection , RootFolderModel ) {
] , function ( Marionette , RootFolderCollectionView , RootFolderCollection , RootFolderModel , LoadingView ) {
return Marionette . Layout . extend ( {
template : 'AddSeries/RootFolders/LayoutTemplate' ,
@ -33,6 +34,7 @@ define(
onRender : function ( ) {
var self = this ;
this . currentDirs . show ( new LoadingView ( ) ) ;
RootFolderCollection . promise . done ( function ( ) {
self . currentDirs . show ( self . rootfolderListView ) ;
@ -11,7 +11,7 @@
{{#if items}}
< h4 > Recent Folders< / h4 >
{{/if}}
< div id = "current-dirs" class = "root-folders-list" > loading ... < / div >
< div id = "current-dirs" class = "root-folders-list" > < / div >
< / div >
< div class = "modal-footer" >
< button class = "btn" data-dismiss = "modal" > close< / button >
@ -6,11 +6,11 @@ define(
'Episode/Search/ButtonsView' ,
'Episode/Search/ManualLayout' ,
'Release/Collection' ,
'Shared/ Spinner View',
'Shared/ Loading View',
'Shared/Messenger' ,
'Commands/CommandController' ,
'Shared/FormatHelpers'
] , function ( App , Marionette , ButtonsView , ManualSearchLayout , ReleaseCollection , Spinner View, Messenger , CommandController , FormatHelpers ) {
] , function ( App , Marionette , ButtonsView , ManualSearchLayout , ReleaseCollection , Loading View, Messenger , CommandController , FormatHelpers ) {
return Marionette . Layout . extend ( {
template : 'Episode/Search/LayoutTemplate' ,
@ -59,7 +59,7 @@ define(
var self = this ;
this . mainView = new Spinner View( ) ;
this . mainView = new Loading View( ) ;
this . _showMainView ( ) ;
var releases = new ReleaseCollection ( ) ;
@ -8,8 +8,9 @@ define(
'Series/EpisodeFileCollection' ,
'Cells/FileSizeCell' ,
'Cells/QualityCell' ,
'Episode/Summary/NoFileView'
] , function ( App , Marionette , Backgrid , EpisodeFileModel , EpisodeFileCollection , FileSizeCell , QualityCell , NoFileView ) {
'Episode/Summary/NoFileView' ,
'Shared/LoadingView'
] , function ( App , Marionette , Backgrid , EpisodeFileModel , EpisodeFileCollection , FileSizeCell , QualityCell , NoFileView , LoadingView ) {
return Marionette . Layout . extend ( {
template : 'Episode/Summary/EpisodeSummaryLayoutTemplate' ,
@ -61,6 +62,8 @@ define(
}
else {
this . activity . show ( new LoadingView ( ) ) ;
var self = this ;
var newEpisodeFile = new EpisodeFileModel ( { id : episodeFileId } ) ;
var newEpisodeFileCollection = new EpisodeFileCollection ( newEpisodeFile , { seriesId : this . model . get ( 'seriesId' ) } ) ;
@ -9,8 +9,8 @@ define(
'Cells/FileSizeCell' ,
'Cells/QualityCell' ,
'Cells/ApprovalStatusCell' ,
'Shared/ Spinner View'
] , function ( Marionette , Backgrid , ReleaseCollection , IndexerCell , EpisodeNumberCell , FileSizeCell , QualityCell , ApprovalStatusCell , Spinner View) {
'Shared/ Loading View'
] , function ( Marionette , Backgrid , ReleaseCollection , IndexerCell , EpisodeNumberCell , FileSizeCell , QualityCell , ApprovalStatusCell , Loading View) {
return Marionette . Layout . extend ( {
template : 'Release/LayoutTemplate' ,
@ -80,7 +80,7 @@ define(
var self = this ;
this . grid . show ( new Spinner View( ) ) ;
this . grid . show ( new Loading View( ) ) ;
this . fetchPromise . done ( function ( ) {
self . showTable ( ) ;
@ -1 +1,8 @@
loading ...
< div class = "row" >
< div id = "followingBalls" >
< div id = "ball-1" class = "ball" > < / div >
< div id = "ball-2" class = "ball" > < / div >
< div id = "ball-3" class = "ball" > < / div >
< div id = "ball-4" class = "ball" > < / div >
< / div >
< / div >
@ -1,8 +0,0 @@
< div class = "row" >
< div id = "followingBalls" >
< div id = "ball-1" class = "ball" > < / div >
< div id = "ball-2" class = "ball" > < / div >
< div id = "ball-3" class = "ball" > < / div >
< div id = "ball-4" class = "ball" > < / div >
< / div >
< / div >
@ -1,12 +0,0 @@
'use strict' ;
define (
[
'marionette'
] , function ( Marionette ) {
return Marionette . ItemView . extend ( {
template : 'Shared/SpinnerTemplate' ,
} ) ;
} ) ;