2021-03-28 11:06:49 +02:00
|
|
|
import CustomWizard from "../models/custom";
|
2018-05-09 07:06:43 +02:00
|
|
|
|
|
|
|
export default Ember.Component.extend({
|
2021-03-28 11:06:49 +02:00
|
|
|
siteName: function () {
|
2021-04-12 08:26:22 +02:00
|
|
|
/*eslint no-undef:0*/
|
2018-05-09 07:06:43 +02:00
|
|
|
return Wizard.SiteSettings.title;
|
|
|
|
}.property(),
|
|
|
|
|
|
|
|
actions: {
|
|
|
|
skip() {
|
2021-03-28 11:06:49 +02:00
|
|
|
CustomWizard.skip(this.get("wizardId"));
|
|
|
|
},
|
|
|
|
},
|
2019-06-19 07:39:39 +02:00
|
|
|
});
|