Skip to content

Commit 663e0b9

Browse files
committed
sync
1 parent 1e095ed commit 663e0b9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/lib/radio/radio.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,9 @@ export class MdRadioGroup extends _MdRadioGroupMixinBase
176176
this._checkSelectedRadioButton();
177177
}
178178

179-
constructor(private _change: ChangeDetectorRef) {}
179+
constructor(private _change: ChangeDetectorRef) {
180+
super();
181+
}
180182

181183
/**
182184
* Initialize properties once content children are available.
@@ -428,6 +430,7 @@ export class MdRadioButton implements OnInit, AfterViewInit, OnDestroy {
428430
constructor(@Optional() radioGroup: MdRadioGroup,
429431
private _elementRef: ElementRef,
430432
private _renderer: Renderer2,
433+
private _changeDetector: ChangeDetectorRef,
431434
private _focusOriginMonitor: FocusOriginMonitor,
432435
private _radioDispatcher: UniqueSelectionDispatcher) {
433436
// Assertions. Ideally these should be stripped out by the compiler.

0 commit comments

Comments
 (0)