You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
574 B
24 lines
574 B
'use strict';
|
|
|
|
define(
|
|
[
|
|
'marionette',
|
|
'Cells/NzbDroneCell'
|
|
], function (Marionette, NzbDroneCell) {
|
|
return NzbDroneCell.extend({
|
|
|
|
|
|
render: function () {
|
|
|
|
var templateName = this.column.get('template') || this.template;
|
|
|
|
this.templateFunction = Marionette.TemplateCache.get(templateName);
|
|
var data = this.cellValue.toJSON();
|
|
var html = this.templateFunction(data);
|
|
this.$el.html(html);
|
|
|
|
return this;
|
|
}
|
|
});
|
|
});
|