diff options
| author | Misko Hevery | 2010-04-22 21:11:24 -0700 | 
|---|---|---|
| committer | Misko Hevery | 2010-04-22 21:11:24 -0700 | 
| commit | df364c39806b66d135c277949c0aae924d194f34 (patch) | |
| tree | 928b3723d3c49c3e0e0444352bd460aa2f907311 /src | |
| parent | 7ef5e055afec5ad7f279bcc4bd70b9f069d87a95 (diff) | |
| download | angular.js-df364c39806b66d135c277949c0aae924d194f34.tar.bz2 | |
fix CI Build
Diffstat (limited to 'src')
| -rw-r--r-- | src/markups.js | 2 | 
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)) { | 
