Skip to content
This repository has been archived by the owner on Aug 29, 2023. It is now read-only.

Commit

Permalink
fix(radioGroup): fix render call happing before radioGroup init
Browse files Browse the repository at this point in the history
closes #1141
  • Loading branch information
rschmukler committed Jan 13, 2015
1 parent e472348 commit 68e350d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/radioButton/radioButton.js
Expand Up @@ -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) {
Expand Down

0 comments on commit 68e350d

Please sign in to comment.