Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
fix(select): removes usage of element.scope()
Browse files Browse the repository at this point in the history
closes #6033

Closes #6228
  • Loading branch information
Robert Messerle authored and jelbourn committed Dec 10, 2015
1 parent a4ea9de commit 3040fd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/select/select.js
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ function SelectDirective($mdSelect, $mdUtil, $mdTheming, $mdAria, $compile, $par
selectContainer = angular.element(
element[0].querySelector('.md-select-menu-container')
);
selectScope = selectContainer.scope();
selectScope = scope;
if (element.attr('md-container-class')) {
var value = selectContainer[0].getAttribute('class') + ' ' + element.attr('md-container-class');
selectContainer[0].setAttribute('class', value);
Expand Down

0 comments on commit 3040fd2

Please sign in to comment.