mirror of
https://github.com/lidarr/Lidarr
synced 2025-01-01 04:25:55 +00:00
207d9c256d
Relative dates for next airing on posters and list (series) History time shows real time on tooltip
15 lines
404 B
JavaScript
15 lines
404 B
JavaScript
'use strict';
|
|
define(
|
|
[
|
|
'handlebars',
|
|
'Shared/FormatHelpers'
|
|
], function (Handlebars, FormatHelpers) {
|
|
Handlebars.registerHelper('Bytes', function (size) {
|
|
return new Handlebars.SafeString(FormatHelpers.Bytes(size));
|
|
});
|
|
|
|
Handlebars.registerHelper('Pad2', function (input) {
|
|
return FormatHelpers.pad(input, 2);
|
|
});
|
|
|
|
});
|