Sonarr/UI/Handlebars/Helpers/Numbers.js

20 lines
528 B
JavaScript
Raw Normal View History

2013-06-25 04:43:16 +00:00
'use strict';
define(
[
'handlebars',
'Shared/FormatHelpers'
], function (Handlebars, FormatHelpers) {
Handlebars.registerHelper('Bytes', function (size) {
2013-08-04 01:27:12 +00:00
return new Handlebars.SafeString(FormatHelpers.bytes(size));
2013-06-25 04:43:16 +00:00
});
2013-07-17 00:41:04 +00:00
Handlebars.registerHelper('Pad2', function (input) {
return FormatHelpers.pad(input, 2);
2013-07-17 00:41:04 +00:00
});
2013-07-17 21:53:25 +00:00
Handlebars.registerHelper('Number', function (input) {
2013-08-04 01:27:12 +00:00
return FormatHelpers.number(input);
2013-07-17 21:53:25 +00:00
});
2013-06-25 04:43:16 +00:00
});