mirror of
https://github.com/flarum/framework.git
synced 2024-12-02 23:23:52 +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')
|
|
);
|
|
}
|