mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-12-31 18:20:09 +01:00
13 lines
289 B
JavaScript
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;
|
|
}
|
|
}); |