mirror of
https://github.com/Prowlarr/Prowlarr
synced 2025-12-06 08:34:28 +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;
|
|
}
|
|
}); |