2013-06-09 20:51:32 +00:00
|
|
|
"use strict";
|
2013-06-14 23:18:37 +00:00
|
|
|
define(['app','backgrid'], function () {
|
2013-06-09 20:51:32 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|