Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/3767bbec1829c13f33b6203aa0f7c9c6297cc33b
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
9 additions and
10 deletions
@ -29,10 +29,17 @@ module.exports = Marionette.Layout.extend({
onClick : function ( event ) {
var target = $ ( event . target ) ;
var linkElement = target ;
//look down for <a/>
var href = event . target . getAttribute ( 'href' ) ;
if ( ! href && target . closest ( 'a' ) && target . closest ( 'a' ) [ 0 ] ) {
linkElement = target . closest ( 'a' ) [ 0 ] ;
href = linkElement . getAttribute ( 'href' ) ;
}
if ( href && href . startsWith ( "http" ) ) {
return ;
}
@ -40,15 +47,7 @@ module.exports = Marionette.Layout.extend({
event . preventDefault ( ) ;
//if couldn't find it look up'
if ( ! href && target . closest ( 'a' ) && target . closest ( 'a' ) [ 0 ] ) {
var linkElement = target . closest ( 'a' ) [ 0 ] ;
href = linkElement . getAttribute ( 'href' ) ;
this . setActive ( linkElement ) ;
} else {
this . setActive ( event . target ) ;
}
this . setActive ( linkElement ) ;
if ( $ ( window ) . width ( ) < 768 ) {
this . ui . collapse . collapse ( 'hide' ) ;