mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-02-13 03:17:20 +00:00
13 lines
292 B
JavaScript
13 lines
292 B
JavaScript
var Marionette = require('marionette');
|
|
|
|
module.exports = Marionette.CompositeView.extend({
|
|
template : 'AddArtist/NotFoundViewTemplate',
|
|
|
|
initialize : function(options) {
|
|
this.options = options;
|
|
},
|
|
|
|
templateHelpers : function() {
|
|
return this.options;
|
|
}
|
|
}); |