Open msdevl opened 9 years ago
replace the following line (somewhere around line number 210):
history.replaceState(null, null, newUrl + newHash);
by:
var newUrl = document.location.href.indexOf('#') > -1 ? document.location.href.split('#')[0] : document.location.href;
history.replaceState(null, null, newUrl + newHash);
Hi,
When I click on a tab my complete URL will be deleted and it is only http://mydomain.com/#parentHorizontalTab2. How can I fix the problem?
Thx!