Merge pull request #2033 from ahus1/ahus1_location_fragment_lost_on_logout

Handle URL fragments when redirect from logout / KEYCLOAK-2323
This commit is contained in:
Stian Thorgersen 2016-01-18 09:52:37 +01:00
commit ded919c0a6

View file

@ -682,6 +682,11 @@
oauth.newUrl += '#' + oauth.fragment;
}
return oauth;
} else if (oauth.fragment) {
// logout has been performed, fragment needs to be updated in URL
oauth.newUrl += '#' + oauth.fragment;
return oauth;
}
}