mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 19:34:09 +08:00
22 lines
490 B
JavaScript
22 lines
490 B
JavaScript
import { next } from "@ember/runloop";
|
|
import Component from "@ember/component";
|
|
import { observes, on } from "discourse-common/utils/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)
|
|
);
|
|
}
|
|
});
|