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 50d32aa commit 869b45bCopy full SHA for 869b45b
app/templates/client/components/util/util.service.js
@@ -26,6 +26,12 @@ function UtilService($window) {
26
urlParse(url) {
27
var a = document.createElement('a');
28
a.href = url;
29
+
30
+ // Special treatment for IE, see http://stackoverflow.com/a/13405933 for details
31
+ if (a.host === '') {
32
+ a.href = a.href;
33
+ }
34
35
return a;
36
},
37
0 commit comments