mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-02-07 20:28:09 +00:00
13 lines
249 B
JavaScript
13 lines
249 B
JavaScript
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"
|
|
);
|
|
}
|
|
});
|