wizard-no-access.js.es6 252 B

12345678910111213
  1. import CustomWizard from '../models/custom';
  2. export default Ember.Component.extend({
  3. siteName: function() {
  4. return Wizard.SiteSettings.title;
  5. }.property(),
  6. actions: {
  7. skip() {
  8. CustomWizard.skip(this.get('wizardId'));
  9. }
  10. }
  11. })