aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/markups.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/markups.js b/src/markups.js
index e9c03217..74b293b8 100644
--- a/src/markups.js
+++ b/src/markups.js
@@ -71,6 +71,8 @@ angularTextMarkup('OPTION', function(text, textNode, parentElement){
var NG_BIND_ATTR = 'ng-bind-attr';
angularAttrMarkup('{{}}', function(value, name, element){
if (name.substr(0, 3) != 'ng-') {
+ if (msie && name == 'src')
+ value = decodeURI(value);
var bindings = parseBindings(value),
bindAttr;
if (hasBindings(bindings)) {