1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-01-01 04:25:55 +00:00
Lidarr/UI/Handlebars/Helpers/Numbers.js
2013-07-16 17:41:04 -07:00

14 lines
388 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 input.pad(2);
});
});