1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-03-05 13:20:20 -05:00
Files
Sonarr/src/UI/Cells/IndexerCell.js
Keivan Beigi 428a1439e5 rjs -> webpack
2015-02-02 17:43:14 -08:00

10 lines
262 B
JavaScript

var Backgrid = require('backgrid');
module.exports = Backgrid.Cell.extend({
className : 'indexer-cell',
render : function(){
var indexer = this.model.get(this.column.get('name'));
this.$el.html(indexer);
return this;
}
});