mirror of
https://github.com/discourse/discourse.git
synced 2025-05-22 17:33:38 +08:00
14 lines
263 B
JavaScript
14 lines
263 B
JavaScript
export default Ember.Controller.extend({
|
|
wizard: null,
|
|
step: null,
|
|
|
|
actions: {
|
|
goNext() {
|
|
this.transitionToRoute('step', this.get('step.next'));
|
|
},
|
|
goBack() {
|
|
this.transitionToRoute('step', this.get('step.previous'));
|
|
},
|
|
}
|
|
});
|