mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-13 01:01:27 -05:00
13 lines
263 B
JavaScript
13 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'));
|
|
},
|
|
}
|
|
});
|