mirror of
https://github.com/Radarr/Radarr
synced 2025-02-12 17:45:13 +00:00
13 lines
314 B
JavaScript
13 lines
314 B
JavaScript
"use strict";
|
|
define(['app'], function () {
|
|
NzbDrone.Cells.IndexerCell = Backgrid.Cell.extend({
|
|
|
|
class : 'indexer-cell',
|
|
|
|
render: function () {
|
|
var indexer = this.model.get(this.column.get('name'));
|
|
this.$el.html(indexer);
|
|
return this;
|
|
}
|
|
});
|
|
});
|