mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-11 09:53:32 +03:00
11 lines
284 B
JavaScript
11 lines
284 B
JavaScript
|
import ExploreRoute from './index';
|
||
|
|
||
|
export default class ExploreConnectRoute extends ExploreRoute {
|
||
|
controllerName = 'explore';
|
||
|
|
||
|
// Ensure to always close the iframe, as we're now on an Ember route
|
||
|
beforeModel() {
|
||
|
this.explore.toggleExploreWindow(false);
|
||
|
}
|
||
|
}
|