Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/4b5b0ad751203bcf65d286e3e49e4f0f45ff07ed
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
4 additions and
35 deletions
@ -13,7 +13,7 @@ define([
events : {
'click .x-edit' : 'edit' ,
'click .x-remove' : 'remove '
'click .x-remove' : 'remove Notification '
} ,
edit : function ( ) {
@ -21,7 +21,7 @@ define([
NzbDrone . modalRegion . show ( view ) ;
} ,
remove : function ( ) {
remove Notification : function ( ) {
var view = new NzbDrone . Settings . Notifications . DeleteView ( { model : this . model } ) ;
NzbDrone . modalRegion . show ( view ) ;
}
@ -17,7 +17,7 @@ define([
events : {
'click .x-edit' : 'edit' ,
'click .x-remove' : 'remove '
'click .x-remove' : 'remove Quality '
} ,
edit : function ( ) {
@ -25,7 +25,7 @@ define([
NzbDrone . modalRegion . show ( view ) ;
} ,
remove : function ( ) {
remove Quality : function ( ) {
var view = new NzbDrone . Series . Delete . DeleteSeriesView ( { model : this . model } ) ;
NzbDrone . modalRegion . show ( view ) ;
}
@ -1,31 +0,0 @@
"use strict" ;
define ( 'modal' , function ( ) {
var modal = Backbone . Marionette . Region . extend ( {
el : "#modal-region" ,
constructor : function ( ) {
_ . bindAll ( this ) ;
Backbone . Marionette . Region . prototype . constructor . apply ( this , arguments ) ;
this . on ( "show" , this . showModal , this ) ;
} ,
getEl : function ( selector ) {
var $el = $ ( selector ) ;
$el . on ( "hidden" , this . close ) ;
return $el ;
} ,
showModal : function ( view ) {
view . on ( "close" , this . hideModal , this ) ;
this . $el . modal ( 'show' ) ;
} ,
hideModal : function ( ) {
this . $el . modal ( 'hide' ) ;
}
} ) ;
return modal ;
} ) ;