Files
Prowlarr-Prowlarr/src/UI/AddSeries/ErrorView.js
2015-02-14 19:12:21 +01:00

13 lines
289 B
JavaScript

var Marionette = require('marionette');
module.exports = Marionette.CompositeView.extend({
template : 'AddSeries/ErrorViewTemplate',
initialize : function(options) {
this.options = options;
},
templateHelpers : function() {
return this.options;
}
});