discourse/app/assets/javascripts/wizard/controllers/step.js.es6

14 lines
263 B
Text
Raw Normal View History

export default Ember.Controller.extend({
2016-08-25 13:14:56 -04:00
wizard: null,
step: null,
2016-08-25 13:14:56 -04:00
actions: {
goNext() {
this.transitionToRoute('step', this.get('step.next'));
},
goBack() {
this.transitionToRoute('step', this.get('step.previous'));
},
}
});