Files
Readarr/src/UI/Cells/IndexerCell.js
Mark McDowall ce6a299c98 Deleting episode files from episode details is a go
New: Delete episode file from episode details
2013-11-28 22:31:46 -08:00

17 lines
364 B
JavaScript

'use strict';
define(
[
'backgrid'
], function (Backgrid) {
return Backgrid.Cell.extend({
className : 'indexer-cell',
render: function () {
var indexer = this.model.get(this.column.get('name'));
this.$el.html(indexer);
return this;
}
});
});