mirror of
https://github.com/discourse/discourse.git
synced 2024-12-13 00:03:53 +08:00
8d34f4bbd9
This reverts commit fcb1ca52f9
.
22 lines
495 B
JavaScript
22 lines
495 B
JavaScript
import { next } from "@ember/runloop";
|
|
import Component from "@ember/component";
|
|
import { observes, on } from "ember-addons/ember-computed-decorators";
|
|
|
|
export default Component.extend({
|
|
tagName: "label",
|
|
|
|
click(e) {
|
|
e.preventDefault();
|
|
this.onChange(this.radioValue);
|
|
},
|
|
|
|
@observes("value")
|
|
@on("init")
|
|
updateVal() {
|
|
const checked = this.value === this.radioValue;
|
|
next(
|
|
() => (this.element.querySelector("input[type=radio]").checked = checked)
|
|
);
|
|
}
|
|
});
|