|
@@ -60,9 +60,13 @@ function createConnectionExternally(webserviceUrl, success_callback,
|
60
|
60
|
}
|
61
|
61
|
};
|
62
|
62
|
|
|
63
|
+ xhttp.open("GET", webserviceUrl, true);
|
|
64
|
+
|
|
65
|
+ // Fixes external connect for IE
|
|
66
|
+ // The timeout property may be set only after calling the open() method
|
|
67
|
+ // and before calling the send() method.
|
63
|
68
|
xhttp.timeout = 3000;
|
64
|
69
|
|
65
|
|
- xhttp.open("GET", webserviceUrl, true);
|
66
|
70
|
window.connectionTimes = {};
|
67
|
71
|
var now = window.connectionTimes["external_connect.sending"] =
|
68
|
72
|
window.performance.now();
|