You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixes logging in with IE11 when using well-known port numbers 80 and 443 where otherwise isSameOrigin() fails because of an IE bug. See issue angular-fullstack#1880
Copy file name to clipboardExpand all lines: templates/app/client/components/util/util.service.js
+4-1
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,10 @@ function UtilService($window) {
49
49
origins.push($window.location);
50
50
origins=origins.filter(function(o){
51
51
returnurl.hostname===o.hostname&&
52
-
url.port===o.port&&
52
+
// 2nd part of the special treatment for IE fix (see above):
53
+
// This part is when using well-known ports 80 or 443 with IE, when $window.location.port==='' instead of the real port number. Probably the same cause as this IE bug:
0 commit comments