discourse/app/assets/javascripts/wizard/controllers/step.js.es6
2016-09-22 09:48:58 -04:00

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'));
},
}
});