From 68e350d11dcd15ae07c495e6859ba32f47d79836 Mon Sep 17 00:00:00 2001 From: Ryan Schmukler Date: Tue, 13 Jan 2015 11:13:22 -0500 Subject: [PATCH] fix(radioGroup): fix render call happing before radioGroup init closes #1141 --- src/components/radioButton/radioButton.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/radioButton/radioButton.js b/src/components/radioButton/radioButton.js index cbf1cc77d28..65ab9835174 100644 --- a/src/components/radioButton/radioButton.js +++ b/src/components/radioButton/radioButton.js @@ -56,7 +56,7 @@ function mdRadioGroupDirective($mdUtil, $mdConstant, $mdTheming) { restrict: 'E', controller: ['$element', RadioGroupController], require: ['mdRadioGroup', '?ngModel'], - link: linkRadioGroup + link: { pre: linkRadioGroup } }; function linkRadioGroup(scope, element, attr, ctrls) {