diff options
| author | Igor Minar | 2014-01-31 17:03:30 -0800 | 
|---|---|---|
| committer | Igor Minar | 2014-01-31 17:03:30 -0800 | 
| commit | 6609e3da76dd898cfe85f75f23ab2e39fee65fe5 (patch) | |
| tree | 2e74d78b3e6ee1c3e6c4aff8c3dbb4926a2ce610 /src | |
| parent | ef210e5e119db4f5bfc9d2428b19f9b335c4f976 (diff) | |
| download | angular.js-6609e3da76dd898cfe85f75f23ab2e39fee65fe5.tar.bz2 | |
fix(http): make jshint happy
Diffstat (limited to 'src')
| -rw-r--r-- | src/ng/httpBackend.js | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/ng/httpBackend.js b/src/ng/httpBackend.js index 665c5eec..11e1b999 100644 --- a/src/ng/httpBackend.js +++ b/src/ng/httpBackend.js @@ -6,7 +6,7 @@ function createXhr(method) {      //if it is available      if (msie <= 8 && (!method.match(/^(get|post|head|put|delete|options)$/i) ||        !window.XMLHttpRequest)) { -      return new ActiveXObject("Microsoft.XMLHTTP"); +      return new window.ActiveXObject("Microsoft.XMLHTTP");      } else if (window.XMLHttpRequest) {        return new window.XMLHttpRequest();      } | 
