mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-15 09:33:52 -07:00
13 lines
No EOL
289 B
JavaScript
13 lines
No EOL
289 B
JavaScript
var Marionette = require('marionette');
|
|
|
|
module.exports = Marionette.CompositeView.extend({
|
|
template : 'AddArtist/ErrorViewTemplate',
|
|
|
|
initialize : function(options) {
|
|
this.options = options;
|
|
},
|
|
|
|
templateHelpers : function() {
|
|
return this.options;
|
|
}
|
|
}); |