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