mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
14 lines
314 B
JavaScript
14 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;
|
|
}
|
|
});
|
|
});
|