We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 992eaba commit 3fcad95Copy full SHA for 3fcad95
src/stateDirectives.js
@@ -88,7 +88,7 @@ function $StateRefDirective($state, $timeout) {
88
var params = null, url = null, base = stateContext(element) || $state.$current;
89
// SVGAElement does not use the href attribute, but rather the 'xlinkHref' attribute.
90
var hrefKind = toString.call(element.prop('href')) === '[object SVGAnimatedString]' ?
91
- 'xlink:href' : 'href';
+ 'xlink:href' : 'href';
92
var newHref = null, isAnchor = element.prop("tagName").toUpperCase() === "A";
93
var isForm = element[0].nodeName === "FORM";
94
var attr = isForm ? "action" : hrefKind, nav = true;
0 commit comments