1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-20 21:55:03 -04:00

Fixed: Show an error message after a failed Trakt search

This commit is contained in:
Mark McDowall
2014-11-01 22:46:45 -07:00
parent e6494ba229
commit c159a378a0
3 changed files with 43 additions and 3 deletions
+20
View File
@@ -0,0 +1,20 @@
'use strict';
define(
[
'marionette'
], function (Marionette) {
return Marionette.CompositeView.extend({
template: 'AddSeries/ErrorViewTemplate',
initialize: function (options) {
this.options = options;
},
templateHelpers: function () {
return this.options;
}
});
});