1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/UI/Handlebars/Helpers/Html.js

11 lines
266 B
JavaScript
Raw Normal View History

2013-06-25 07:43:16 +03:00
'use strict';
define(
[
'handlebars'
], function (Handlebars) {
Handlebars.registerHelper('defaultImg', function () {
return new Handlebars.SafeString('onerror=this.src=\'/Content/Images/poster-dark.jpg\';');
2013-06-25 07:43:16 +03:00
});
});