Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/149c1490941b92faa0b028a3b1804ba20494a179
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
11 additions and
1 deletions
@ -35,6 +35,7 @@ module.exports = Marionette.Layout.extend({
} ) ;
this . listenTo ( this . seriesCollection , 'row:selected' , this . _onSelected ) ;
this . listenTo ( this , 'modal:afterShow' , this . _setFocus ) ;
} ,
onRender : function ( ) {
@ -88,5 +89,9 @@ module.exports = Marionette.Layout.extend({
this . trigger ( 'manualimport:selected:series' , { model : e . model } ) ;
vent . trigger ( vent . Commands . CloseModal2Command ) ;
} ,
_setFocus : function ( ) {
this . ui . filter . focus ( ) ;
}
} ) ;
@ -1,3 +1,4 @@
var _ = require ( 'underscore' ) ;
var $ = require ( 'jquery' ) ;
var Backbone = require ( 'backbone' ) ;
var Marionette = require ( 'marionette' ) ;
@ -33,7 +34,10 @@ var region = Marionette.Region.extend({
this . currentView . $el . addClass ( 'modal-dialog' ) ;
this . trigger ( 'modal:afterShow' ) ;
this . $el . on ( 'shown.bs.modal' , _ . bind ( function ( ) {
this . trigger ( 'modal:afterShow' ) ;
this . currentView . trigger ( 'modal:afterShow' ) ;
} , this ) ) ;
} ,
closeModal : function ( ) {
@ -44,6 +48,7 @@ var region = Marionette.Region.extend({
_closing : function ( ) {
if ( this . $el ) {
this . $el . off ( 'hide.bs.modal' ) ;
this . $el . off ( 'shown.bs.modal' ) ;
}
this . reset ( ) ;