|
|
@ -9,10 +9,19 @@ define(['app', 'Series/Details/SeasonCollectionView','Shared/LoadingView'], func
|
|
|
|
seasons: '#seasons'
|
|
|
|
seasons: '#seasons'
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
onShow: function () {
|
|
|
|
ui: {
|
|
|
|
|
|
|
|
header: '.x-header'
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
initialize: function () {
|
|
|
|
|
|
|
|
$('body').addClass('backdrop');
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
onShow: function () {
|
|
|
|
var self = this;
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$.backstretch(this.model.get('fanArt'));
|
|
|
|
|
|
|
|
|
|
|
|
this.seasons.show(new NzbDrone.Shared.LoadingView());
|
|
|
|
this.seasons.show(new NzbDrone.Shared.LoadingView());
|
|
|
|
|
|
|
|
|
|
|
|
this.seasonCollection = new NzbDrone.Series.SeasonCollection();
|
|
|
|
this.seasonCollection = new NzbDrone.Series.SeasonCollection();
|
|
|
@ -30,6 +39,7 @@ define(['app', 'Series/Details/SeasonCollectionView','Shared/LoadingView'], func
|
|
|
|
|
|
|
|
|
|
|
|
onClose: function () {
|
|
|
|
onClose: function () {
|
|
|
|
$('.backstretch').remove();
|
|
|
|
$('.backstretch').remove();
|
|
|
|
|
|
|
|
$('body').removeClass('backdrop');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|