Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 6609e3d

Browse files
committed
fix(http): make jshint happy
1 parent ef210e5 commit 6609e3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ng/httpBackend.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ function createXhr(method) {
66
//if it is available
77
if (msie <= 8 && (!method.match(/^(get|post|head|put|delete|options)$/i) ||
88
!window.XMLHttpRequest)) {
9-
return new ActiveXObject("Microsoft.XMLHTTP");
9+
return new window.ActiveXObject("Microsoft.XMLHTTP");
1010
} else if (window.XMLHttpRequest) {
1111
return new window.XMLHttpRequest();
1212
}

0 commit comments

Comments
 (0)