Sonarr/src/UI/AddSeries/ErrorView.js

13 lines
289 B
JavaScript
Raw Normal View History

2015-02-03 01:18:45 +00:00
var Marionette = require('marionette');
module.exports = Marionette.CompositeView.extend({
template : 'AddSeries/ErrorViewTemplate',
initialize : function(options) {
2015-02-03 01:18:45 +00:00
this.options = options;
},
templateHelpers : function() {
2015-02-03 01:18:45 +00:00
return this.options;
}
});