mirror of
https://github.com/flarum/core.git
synced 2025-10-10 14:34:30 +02: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')
|
|
);
|
|
}
|