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

Commit

Permalink
fix(core): Remove redeclared variable declaration.
Browse files Browse the repository at this point in the history
Closes #1697.
  • Loading branch information
wesalvaro authored and ThomasBurleson committed Feb 26, 2015
1 parent 7fc0d02 commit 3454db3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/util/media.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ function mdMediaFactory($mdConstant, $rootScope, $window) {
}

for (var mediaName in $mdConstant.MEDIA) {
var normalizedName = getNormalizedName(attrs, attrName + '-' + mediaName);
normalizedName = getNormalizedName(attrs, attrName + '-' + mediaName);
if (!attrs[normalizedName]) {
return;
}
Expand Down

0 comments on commit 3454db3

Please sign in to comment.