mirror of
https://github.com/Lidarr/Lidarr
synced 2026-01-08 16:43:12 +01:00
13 lines
No EOL
292 B
JavaScript
13 lines
No EOL
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;
|
|
}
|
|
}); |