Skip to content

Commit 609c953

Browse files
committed
Fixed bad spacing characters
1 parent b438685 commit 609c953

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/amplitude.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -416,11 +416,11 @@
416416
var isIE = window.XDomainRequest ? true : false;
417417
if (isIE) {
418418
var xdr = new window.XDomainRequest();
419-
            xdr.open('POST', this.url, true);
420-
            xdr.onload = function() {
419+
xdr.open('POST', this.url, true);
420+
xdr.onload = function() {
421421
callback(xdr.responseText);
422422
};
423-
            xdr.send();
423+
xdr.send();
424424
} else {
425425
var xhr = new XMLHttpRequest();
426426
xhr.open('POST', this.url, true);

0 commit comments

Comments
 (0)