Lidarr/UI/Shared/Cells/FileSizeCell.js

15 lines
305 B
JavaScript

"use strict";
NzbDrone.Shared.Cells.FileSizeCell = Backgrid.Cell.extend({
className: "file-size-cell",
render: function () {
var size = Number(this.model.get(this.column.get("name")));
this.$el.html(size.bytes(1));
this.delegateEvents();
return this;
}
});