Added FileSizeCell

This commit is contained in:
kay.one 2013-06-06 17:50:17 -07:00
parent 890d1f2398
commit 5f8c58adb9
4 changed files with 24 additions and 20 deletions

View file

@ -0,0 +1,14 @@
"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;
}
});