Prowlarr/src/UI/AddSeries/NotFoundView.js
2015-02-02 17:43:14 -08:00

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;
}
});