2018-05-09 07:06:43 +02:00
|
|
|
import CustomWizard from '../models/custom';
|
|
|
|
|
|
|
|
export default Ember.Component.extend({
|
|
|
|
siteName: function() {
|
|
|
|
return Wizard.SiteSettings.title;
|
|
|
|
}.property(),
|
|
|
|
|
|
|
|
actions: {
|
|
|
|
skip() {
|
|
|
|
CustomWizard.skip(this.get('wizardId'));
|
|
|
|
}
|
|
|
|
}
|
2019-06-19 07:39:39 +02:00
|
|
|
});
|