File size won't be bytes anymore

pull/3113/head
Mark McDowall 11 years ago
parent 763c4bd25b
commit 6c2534ec61

@ -15,7 +15,7 @@
<tbody>
<tr>
<td>{{path}}</td>
<td>{{size}}</td>
<td>{{fileSize size}}</td>
<td>{{quality.quality.name}}</td>
</tr>
</tbody>

@ -18,3 +18,7 @@ Handlebars.registerHelper("debug", function(optionalValue) {
console.log(optionalValue);
}
});
Handlebars.registerHelper("fileSize", function(size) {
return size.bytes();
});
Loading…
Cancel
Save