mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
fixed fanart backdrop not showing up.
This commit is contained in:
@@ -20,7 +20,12 @@ define(['app', 'Series/Details/SeasonCollectionView', 'Shared/LoadingView'], fun
|
||||
onShow: function () {
|
||||
var self = this;
|
||||
|
||||
$.backstretch(this.model.get('fanArt'));
|
||||
if (this.model.has('fanArt')) {
|
||||
$.backstretch(this.model.get('fanArt'));
|
||||
}
|
||||
else {
|
||||
$('body').removeClass('backdrop');
|
||||
}
|
||||
|
||||
this.seasons.show(new NzbDrone.Shared.LoadingView());
|
||||
|
||||
|
Reference in New Issue
Block a user