bb4a64e957
Refs #163 On small screens, when selecting a contribution or contributor, the lists are hidden and only the details are shown. The transitions are animated using liquid-fire.
26 lines
634 B
JavaScript
26 lines
634 B
JavaScript
export default function () {
|
|
this.transition(
|
|
this.fromRoute('dashboard.index'),
|
|
this.toRoute('dashboard.contributions'),
|
|
this.media('(max-width: 600px)'),
|
|
this.use('toLeft'),
|
|
this.reverse('toRight'),
|
|
);
|
|
|
|
this.transition(
|
|
this.fromRoute('dashboard.index'),
|
|
this.toRoute('dashboard.contributors'),
|
|
this.media('(max-width: 600px)'),
|
|
this.use('toLeft'),
|
|
this.reverse('toRight')
|
|
);
|
|
|
|
this.transition(
|
|
this.fromRoute('dashboard.contributions'),
|
|
this.toRoute('dashboard.contributors'),
|
|
this.media('(max-width: 600px)'),
|
|
this.use('toLeft'),
|
|
this.reverse('toRight')
|
|
);
|
|
}
|