mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
20 lines
467 B
JavaScript
20 lines
467 B
JavaScript
'use strict';
|
|
|
|
define(
|
|
[
|
|
'backgrid',
|
|
'Shared/FormatHelpers'
|
|
], function (Backgrid, FormatHelpers) {
|
|
return Backgrid.Cell.extend({
|
|
|
|
className: 'file-size-cell',
|
|
|
|
render: function () {
|
|
var size = this.model.get(this.column.get('name'));
|
|
this.$el.html(FormatHelpers.Bytes(size));
|
|
this.delegateEvents();
|
|
return this;
|
|
}
|
|
});
|
|
});
|