2013-06-25 04:43:16 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
define(
|
|
|
|
[
|
|
|
|
'handlebars'
|
|
|
|
], function (Handlebars) {
|
2013-09-14 07:11:30 +00:00
|
|
|
|
|
|
|
var placeHolder = '/Content/Images/poster-dark.jpg';
|
|
|
|
|
|
|
|
window.NzbDrone.imageError = function (img) {
|
|
|
|
if (!img.src.contains(placeHolder)) {
|
|
|
|
img.src = placeHolder;
|
|
|
|
}
|
2013-09-14 19:50:38 +00:00
|
|
|
img.onerror = null;
|
2013-09-14 07:11:30 +00:00
|
|
|
};
|
|
|
|
|
2013-06-25 04:43:16 +00:00
|
|
|
Handlebars.registerHelper('defaultImg', function () {
|
2013-09-14 07:11:30 +00:00
|
|
|
return new Handlebars.SafeString('onerror=window.NzbDrone.imageError(this)');
|
2013-06-25 04:43:16 +00:00
|
|
|
});
|
|
|
|
});
|