1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-07-05 00:49:20 +02:00
Files
Sonarr/UI/Cells/FileSizeCell.js

16 lines
431 B
JavaScript
Raw Normal View History

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