1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/UI/Cells/FileSizeCell.js

16 lines
431 B
JavaScript
Raw Normal View History

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