mirror of
https://github.com/Prowlarr/Prowlarr
synced 2025-12-07 17:12:44 +01:00
16 lines
No EOL
393 B
JavaScript
16 lines
No EOL
393 B
JavaScript
var NzbDroneCell = require('../../Cells/NzbDroneCell');
|
|
|
|
module.exports = NzbDroneCell.extend({
|
|
className : 'path-cell',
|
|
|
|
render : function() {
|
|
this.$el.empty();
|
|
|
|
var relativePath = this.model.get('relativePath');
|
|
var path = this.model.get('path');
|
|
|
|
this.$el.html('<div title="{0}">{1}</div>'.format(path, relativePath));
|
|
|
|
return this;
|
|
}
|
|
}); |