mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-14 00:53:57 -07:00
Fixed: Exception when navigating away from series details view while it is still loading
This commit is contained in:
parent
7af9748ff3
commit
4665682ea6
2 changed files with 7 additions and 5 deletions
|
@ -214,7 +214,9 @@ define(
|
||||||
series : self.model
|
series : self.model
|
||||||
});
|
});
|
||||||
|
|
||||||
self.seasons.show(seasonCollectionView);
|
if (!self.isClosed) {
|
||||||
|
self.seasons.show(seasonCollectionView);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -9,15 +9,15 @@ define(
|
||||||
return Marionette.AppRouter.extend({
|
return Marionette.AppRouter.extend({
|
||||||
|
|
||||||
initialize: function () {
|
initialize: function () {
|
||||||
vent.on(vent.Commands.OpenControlPanelCommand, this._openModal, this);
|
vent.on(vent.Commands.OpenControlPanelCommand, this._openControlPanel, this);
|
||||||
vent.on(vent.Commands.CloseControlPanelCommand, this._closeModal, this);
|
vent.on(vent.Commands.CloseControlPanelCommand, this._closeControlPanel, this);
|
||||||
},
|
},
|
||||||
|
|
||||||
_openModal: function (view) {
|
_openControlPanel: function (view) {
|
||||||
AppLayout.controlPanelRegion.show(view);
|
AppLayout.controlPanelRegion.show(view);
|
||||||
},
|
},
|
||||||
|
|
||||||
_closeModal: function () {
|
_closeControlPanel: function () {
|
||||||
AppLayout.controlPanelRegion.closePanel();
|
AppLayout.controlPanelRegion.closePanel();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue