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

Commit

Permalink
update(util): typo correction
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasBurleson committed Sep 13, 2015
1 parent 8147112 commit c7f2d64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/util/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ function UtilFactory($document, $timeout, $compile, $rootScope, $$mdAnimate, $in
extractElementByName: function(element, nodeName, scanDeep, warnNotFound) {
var found = scanTree(element);
if (!found && !!warnNotFound) {
$log.warn( $mdUtil.supplant("Unable to find node '{0}' in element '{1}'.",[nodeName, element[0].outerHTM]) );
$log.warn( $mdUtil.supplant("Unable to find node '{0}' in element '{1}'.",[nodeName, element[0].outerHTML]) );
}

return angular.element(found || element);
Expand Down

0 comments on commit c7f2d64

Please sign in to comment.