framework/ember/app/transitions.js

13 lines
280 B
JavaScript
Raw Normal View History

2014-12-20 14:26:46 +08:00
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')
);
}