Sonarr/src/UI/AddSeries/NotFoundView.js

21 lines
408 B
JavaScript
Raw Normal View History

'use strict';
define(
[
'marionette'
], function (Marionette) {
return Marionette.CompositeView.extend({
template: 'AddSeries/NotFoundViewTemplate',
initialize: function (options) {
this.options = options;
},
templateHelpers: function () {
return this.options;
}
});
});