stop trying to load place holder image for placeholder when server is offline.

This commit is contained in:
kay.one 2013-09-14 00:11:30 -07:00
parent 27c57612f4
commit b07bc713bb
1 changed files with 10 additions and 1 deletions

View File

@ -4,7 +4,16 @@ define(
[ [
'handlebars' 'handlebars'
], function (Handlebars) { ], function (Handlebars) {
var placeHolder = '/Content/Images/poster-dark.jpg';
window.NzbDrone.imageError = function (img) {
if (!img.src.contains(placeHolder)) {
img.src = placeHolder;
}
};
Handlebars.registerHelper('defaultImg', function () { Handlebars.registerHelper('defaultImg', function () {
return new Handlebars.SafeString('onerror=this.src=\'/Content/Images/poster-dark.jpg\';'); return new Handlebars.SafeString('onerror=window.NzbDrone.imageError(this)');
}); });
}); });