Sonarr/UI/Cells/FileSizeCell.js

16 lines
431 B
JavaScript
Raw Normal View History

2013-06-22 06:24:24 +00:00
'use strict';
define(['app', 'Shared/FormatHelpers','backgrid'], function () {
NzbDrone.Cells.FileSizeCell = Backgrid.Cell.extend({
2013-06-22 06:24:24 +00:00
className: 'file-size-cell',
render: function () {
2013-06-22 06:24:24 +00:00
var size = this.model.get(this.column.get('name'));
this.$el.html(NzbDrone.Shared.FormatHelpers.FileSizeHelper(size));
this.delegateEvents();
return this;
}
});
});