Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/5928ffc693b1ba1478a5e7e6573af601120b2f88
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
25 additions and
0 deletions
@ -79,6 +79,10 @@ html {
margin-bottom: 30px;
}
.page-container {
min-height: 600px;
}
button::-moz-focus-inner, a::-moz-focus-inner {
border: 0;
}
@ -103,6 +103,7 @@
< script src = "/templates.js" > < / script >
< script src = "/Mixins/backbone.marionette.templates.js" > < / script >
< script src = "/Mixins/backbone.marionette.region.mixin.js" > < / script >
< script src = "/Mixins/backbone.ajax.js" > < / script >
< script src = "/Mixins/tablesorter.extensions.js" > < / script >
< script src = "/Mixins/spoon.js" > < / script >
@ -0,0 +1,20 @@
"use strict" ;
( function ( ) {
var _originalRegionClose = Marionette . Region . prototype . close ;
Marionette . Region . prototype . open = function ( view ) {
var self = this ;
this . $el . fadeOut ( 200 , function ( ) {
_originalRegionClose . apply ( this , arguments ) ;
self . $el . html ( view . el ) ;
self . $el . fadeIn ( 150 ) ;
} ) ;
} ;
Marionette . Region . prototype . close = function ( ) {
//do nothing. we close the region as part of open so we can chain the animation
} ;
} ( ) ) ;