mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
15 lines
388 B
JavaScript
15 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);
|
|
});
|
|
});
|