1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-01-03 21:45:05 +00:00
Lidarr/UI/Shared/Cells/FileSizeCell.js
2013-06-06 17:50:17 -07:00

14 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;
}
});