mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-01-13 12:15:59 +00:00
18 lines
373 B
JavaScript
18 lines
373 B
JavaScript
var vent = require('vent');
|
|
var NzbDroneCell = require('../../Cells/NzbDroneCell');
|
|
|
|
module.exports = NzbDroneCell.extend({
|
|
className : 'file-browser-name-cell',
|
|
|
|
render : function() {
|
|
this.$el.empty();
|
|
|
|
var name = this.model.get(this.column.get('name'));
|
|
|
|
this.$el.html(name);
|
|
|
|
this.delegateEvents();
|
|
|
|
return this;
|
|
}
|
|
}); |