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