mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-01-04 06:38:28 +02:00
12 lines
303 B
JavaScript
12 lines
303 B
JavaScript
"use strict";
|
|
NzbDrone.Shared.Cells.FileSizeCell = Backgrid.Cell.extend({
|
|
|
|
className: "file-size-cell",
|
|
|
|
render: function () {
|
|
var size = this.model.get(this.column.get("name"));
|
|
this.delegateEvents();
|
|
return NzbDrone.Shared.FormatHelpers.FileSizeHelper(size);
|
|
}
|
|
});
|