1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-01-01 04:25:55 +00:00
Lidarr/UI/Shared/Cells/FileSizeCell.js

13 lines
332 B
JavaScript
Raw Normal View History

2013-06-07 00:50:17 +00:00
"use strict";
NzbDrone.Shared.Cells.FileSizeCell = Backgrid.Cell.extend({
className: "file-size-cell",
render: function () {
2013-06-07 02:39:12 +00:00
var size = this.model.get(this.column.get("name"));
2013-06-07 14:34:54 +00:00
this.$el.html(NzbDrone.Shared.FormatHelpers.FileSizeHelper(size));
2013-06-07 00:50:17 +00:00
this.delegateEvents();
2013-06-07 14:34:54 +00:00
return this;
2013-06-07 00:50:17 +00:00
}
});