mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 23:38:35 +08:00
f9648de897
Co-Authored-By: Bianca Nenciu <nbianca@users.noreply.github.com> Co-Authored-By: David Taylor <david@taylorhq.com>
18 lines
424 B
JavaScript
18 lines
424 B
JavaScript
import { observes, on } from "ember-addons/ember-computed-decorators";
|
|
|
|
export default Ember.Component.extend({
|
|
tagName: "label",
|
|
|
|
click(e) {
|
|
e.preventDefault();
|
|
this.onChange(this.get("radioValue"));
|
|
},
|
|
|
|
@observes("value")
|
|
@on("init")
|
|
updateVal() {
|
|
const checked = this.get("value") === this.get("radioValue");
|
|
Ember.run.next(() => this.$("input[type=radio]").prop("checked", checked));
|
|
}
|
|
});
|