This repository was archived by the owner on Apr 12, 2024. It is now read-only.
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
IE8 9: a link route error(angular 1.2.17 1.2.18) #7892
Closed
Description
if my angular version is 1.2.18
base element, href is '/n/b/'
my a link's href is 'c/xx'
so i click this link then
-
if the current location.href is 'http://www.x.com/n/b/#!/'
location.href should be 'http://www.x.com/n/b/#!/c/xx' but the result is error, so i debug this and find that in line 9714 the "absHref" is 'http://www.x.com/n/b/#!//c/xx'
-
if the current location.href is 'http://www.x.com/n/b/#!/c/yy'
location.href should be 'http://www.x.com/n/b/#!/c/xx' but the result is error, so i debug this and find that in line 9714 the "absHref" is 'http://www.x.com/n/b/#!/c/yy/c/xx'
Please check it.