0205d8ccb5
* ran eslint and fixes linting issues for javascripts/wizard folder * ran prettier
14 Zeilen
282 B
JavaScript
14 Zeilen
282 B
JavaScript
import CustomWizard from "../models/custom";
|
|
|
|
export default Ember.Component.extend({
|
|
siteName: function () {
|
|
/*eslint no-undef:0*/
|
|
return Wizard.SiteSettings.title;
|
|
}.property(),
|
|
|
|
actions: {
|
|
skip() {
|
|
CustomWizard.skip(this.get("wizardId"));
|
|
},
|
|
},
|
|
});
|