mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-19 21:46:43 -04:00
12 lines
330 B
JavaScript
12 lines
330 B
JavaScript
var NzbDroneCell = require('../../../Cells/NzbDroneCell');
|
|
|
|
module.exports = NzbDroneCell.extend({
|
|
className : 'download-log-cell',
|
|
|
|
render : function() {
|
|
this.$el.empty();
|
|
this.$el.html('<a href="{0}" class="no-router" target="_blank">Download</a>'.format(this.cellValue));
|
|
|
|
return this;
|
|
}
|
|
}); |