Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 04:12:53 +01:00
13 Zeilen
253 B
JavaScript
13 Zeilen
253 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'));
|
|
}
|
|
}
|
|
});
|