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