diff --git a/src/lib/radio/radio.ts b/src/lib/radio/radio.ts index 20d43c5f6671..3185ccda00af 100644 --- a/src/lib/radio/radio.ts +++ b/src/lib/radio/radio.ts @@ -404,10 +404,10 @@ export class MdRadioButton implements OnInit { event.stopPropagation(); this.checked = true; - this.radioGroup._controlValueAccessorChangeFn(this.value); this._emitChangeEvent(); if (this.radioGroup) { + this.radioGroup._controlValueAccessorChangeFn(this.value); this.radioGroup._touch(); } }