We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efaff84 commit aca0802Copy full SHA for aca0802
vendor/TraceKit/tracekit.js
@@ -38,11 +38,12 @@ function getLocationOrigin() {
38
39
// Oh dear IE10...
40
if (!document.location.origin) {
41
- document.location.origin =
+ return (
42
document.location.protocol +
43
'//' +
44
document.location.hostname +
45
- (document.location.port ? ':' + document.location.port : '');
+ (document.location.port ? ':' + document.location.port : '')
46
+ );
47
}
48
49
return document.location.origin;
0 commit comments