mirror of
https://github.com/Lidarr/Lidarr
synced 2026-02-11 17:23:17 +01:00
18 lines
No EOL
373 B
JavaScript
18 lines
No EOL
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;
|
|
}
|
|
}); |