mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-03 09:09:42 +02:00
12 lines
354 B
JavaScript
12 lines
354 B
JavaScript
var TemplatedCell = require('./TemplatedCell');
|
|
|
|
module.exports = TemplatedCell.extend({
|
|
className : 'series-title-cell',
|
|
template : 'Cells/SeriesTitleTemplate',
|
|
|
|
// render : function() {
|
|
// this.$el.html(this.model.get("movie").get("title")); //Hack, but somehow handlebar helper does not work.
|
|
// return this;
|
|
// }
|
|
});
|