diff options
Diffstat (limited to 'src/ng/compile.js')
| -rw-r--r-- | src/ng/compile.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/ng/compile.js b/src/ng/compile.js index 3e5a2479..9285b253 100644 --- a/src/ng/compile.js +++ b/src/ng/compile.js @@ -1009,9 +1009,7 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { nName = directiveNormalize(name.toLowerCase()); attrsMap[nName] = name; - attrs[nName] = value = trim((msie && name == 'href') - ? decodeURIComponent(node.getAttribute(name, 2)) - : attr.value); + attrs[nName] = value = trim(attr.value); if (getBooleanAttrName(node, nName)) { attrs[nName] = true; // presence means true } |
