mirror of
https://github.com/Readarr/Readarr.git
synced 2026-03-29 18:14:28 -04:00
13 lines
292 B
JavaScript
13 lines
292 B
JavaScript
var Marionette = require('marionette');
|
|
|
|
module.exports = Marionette.CompositeView.extend({
|
|
template : 'AddSeries/NotFoundViewTemplate',
|
|
|
|
initialize : function(options) {
|
|
this.options = options;
|
|
},
|
|
|
|
templateHelpers : function() {
|
|
return this.options;
|
|
}
|
|
}); |