2018-09-25 16:28:26 +00:00
|
|
|
import { inject as service } from '@ember/service';
|
|
|
|
import Component from '@ember/component';
|
2018-08-28 05:03:55 +00:00
|
|
|
export default Component.extend({
|
2018-09-25 16:28:26 +00:00
|
|
|
wizard: service(),
|
2018-08-28 05:03:55 +00:00
|
|
|
classNames: ['ui-wizard'],
|
|
|
|
glyph: null,
|
|
|
|
headerText: null,
|
|
|
|
actions: {
|
|
|
|
dismissWizard() {
|
|
|
|
this.get('wizard').transitionTutorialMachine(this.get('wizard.currentState'), 'DISMISS');
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|