Sonarr/src/UI/AddSeries/NotFoundView.js

21 lines
405 B
JavaScript
Raw Normal View History

2015-01-30 02:10:16 +00:00
'use strict';
define(
[
'marionette'
], function (Marionette) {
return Marionette.CompositeView.extend({
template: 'AddSeries/NotFoundViewTemplate',
initialize: function (options) {
this.options = options;
},
templateHelpers: function () {
return this.options;
}
});
});