2019-12-10 10:15:30 +11:00
|
|
|
import Button from "discourse/components/d-button";
|
|
|
|
|
|
|
|
|
|
export default Button.extend({
|
|
|
|
|
seleted: false,
|
|
|
|
|
|
|
|
|
|
init() {
|
|
|
|
|
this._super(...arguments);
|
|
|
|
|
this.classNameBindings = this.classNameBindings.concat(
|
|
|
|
|
"selected:btn-primary"
|
|
|
|
|
);
|
2020-09-16 09:53:50 -05:00
|
|
|
},
|
2019-12-10 10:15:30 +11:00
|
|
|
});
|