mirror of
https://github.com/Readarr/Readarr
synced 2025-12-31 12:42:25 +01:00
11 lines
No EOL
300 B
JavaScript
11 lines
No EOL
300 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;
|
|
}
|
|
}); |