Wizard: Step 1

This commit is contained in:
Robin Ward
2016-08-25 13:14:56 -04:00
parent 0471ad393c
commit 3a4615c205
50 changed files with 1103 additions and 80 deletions

View File

@ -1,3 +1,13 @@
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'));
},
}
});