discourse-subscriptions/assets/javascripts/discourse/components/ds-button.js.es6

13 lines
249 B
Plaintext
Raw Normal View History

2019-12-09 18:15:30 -05: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"
);
}
});