Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-15 22:32:54 +01:00
13 Zeilen
256 B
JavaScript
13 Zeilen
256 B
JavaScript
import CustomWizard from "../models/custom";
|
|
|
|
export default Ember.Component.extend({
|
|
siteName: function () {
|
|
return Wizard.SiteSettings.title;
|
|
}.property(),
|
|
|
|
actions: {
|
|
skip() {
|
|
CustomWizard.skip(this.get("wizardId"));
|
|
},
|
|
},
|
|
});
|