1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-18 23:48:35 +02:00
Sonarr/UI/Handlebars/Helpers/Html.js

21 lines
517 B
JavaScript
Raw Normal View History

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