Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 12:22:54 +01:00
cf50a7deb3
* Apply prettier * applied prettier for similar-topics-validator Co-authored-by: Faizaan Gagan <fzngagan@gmail.com>
19 Zeilen
462 B
JavaScript
19 Zeilen
462 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");
|
|
},
|
|
},
|
|
});
|