1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-02-12 17:35:27 +00:00
Sonarr/UI/AddSeries/NotFoundView.js
Keivan Beigi ac18d6c704 added not found placeholder in add series
added path validation to add series
2013-09-17 17:54:57 -07:00

20 lines
404 B
JavaScript

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