mirror of
https://github.com/flarum/framework.git
synced 2024-12-03 15:43:59 +08:00
13 lines
280 B
JavaScript
13 lines
280 B
JavaScript
|
export default function() {
|
||
|
this.transition(
|
||
|
this.fromRoute('discussions-sidebar'),
|
||
|
this.toRoute('discussion-sidebar'),
|
||
|
this.use('slideLeft')
|
||
|
);
|
||
|
this.transition(
|
||
|
this.fromRoute('discussions'),
|
||
|
this.toRoute('discussion'),
|
||
|
this.use('slideLeft')
|
||
|
);
|
||
|
}
|