Skip to content

Commit

Permalink
fix(md-radio): avoid setting checked initially, fixes #152
Browse files Browse the repository at this point in the history
  • Loading branch information
Thanood committed Apr 4, 2016
1 parent c62ffae commit 2feebbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/radio/radio.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export class MdRadio {
if (getBooleanFromAttributeValue(this.mdDisabled)) {
this.radio.disabled = true;
}
this.radio.checked = getBooleanFromAttributeValue(this.mdChecked);
// this.radio.checked = getBooleanFromAttributeValue(this.mdChecked);
// this.radio.addEventListener('change', this.handleChange);
}
Expand Down

0 comments on commit 2feebbe

Please sign in to comment.