radio.ts (material2-7.3.3) | : | radio.ts (material2-7.3.4) | ||
---|---|---|---|---|
skipping to change at line 555 | skipping to change at line 555 | |||
// Otherwise the change event, from the input element, will bubble up and | // Otherwise the change event, from the input element, will bubble up and | |||
// emit its event object to the `change` output. | // emit its event object to the `change` output. | |||
event.stopPropagation(); | event.stopPropagation(); | |||
const groupValueChanged = this.radioGroup && this.value !== this.radioGroup. value; | const groupValueChanged = this.radioGroup && this.value !== this.radioGroup. value; | |||
this.checked = true; | this.checked = true; | |||
this._emitChangeEvent(); | this._emitChangeEvent(); | |||
if (this.radioGroup) { | if (this.radioGroup) { | |||
this.radioGroup._controlValueAccessorChangeFn(this.value); | this.radioGroup._controlValueAccessorChangeFn(this.value); | |||
this.radioGroup._touch(); | ||||
if (groupValueChanged) { | if (groupValueChanged) { | |||
this.radioGroup._emitChangeEvent(); | this.radioGroup._emitChangeEvent(); | |||
} | } | |||
} | } | |||
} | } | |||
} | } | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 0 lines changed or added |