Files
Readarr/src/UI/AddSeries/NotFoundView.js
Keivan Beigi 0ee5261a2a stripBom
2015-01-29 18:10:16 -08:00

21 lines
405 B
JavaScript

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