Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 12:22:54 +01:00
19 Zeilen
461 B
Text
19 Zeilen
461 B
Text
|
import { default as discourseComputed } from 'discourse-common/utils/decorators';
|
||
|
import Component from '@ember/component';
|
||
|
|
||
|
export default Component.extend({
|
||
|
classNames: 'wizard-advanced-toggle',
|
||
|
|
||
|
@discourseComputed('showAdvanced')
|
||
|
toggleClass(showAdvanced) {
|
||
|
let classes = 'btn'
|
||
|
if (showAdvanced) classes += ' btn-primary';
|
||
|
return classes;
|
||
|
},
|
||
|
|
||
|
actions: {
|
||
|
toggleAdvanced() {
|
||
|
this.toggleProperty('showAdvanced');
|
||
|
}
|
||
|
}
|
||
|
})
|