1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-18 21:35:51 -04:00

Select input for select series in manual import

This commit is contained in:
Mark McDowall
2015-05-12 17:07:56 -07:00
parent ee224cb422
commit 149c149094
2 changed files with 11 additions and 1 deletions
@@ -35,6 +35,7 @@ module.exports = Marionette.Layout.extend({
});
this.listenTo(this.seriesCollection, 'row:selected', this._onSelected);
this.listenTo(this, 'modal:afterShow', this._setFocus);
},
onRender : function() {
@@ -88,5 +89,9 @@ module.exports = Marionette.Layout.extend({
this.trigger('manualimport:selected:series', { model: e.model });
vent.trigger(vent.Commands.CloseModal2Command);
},
_setFocus : function () {
this.ui.filter.focus();
}
});