Pregunta

I have an interesting issue when using IE and Chrome Frame.

When logging out from my site the url is given an extra '/#/', resulting in 'https://mysite.something.com/something/#/'. This seems to, incredulously enough, hinder IE from closing when pressing the close button.

My site is currently supporting chrome frame and would like to continue doing so. Anyone know of a workaround? Any code on my site that could possibly be relevant?

Please help.

Edit: Tested some more, and logout seems not the issue - manually adding '/#/' also makes me unable to close IE.

¿Fue útil?

Solución

I ended up with the workaround to remove the hash sign when logging out. Not the prettiest but at least IE can now be closed.

if (window.externalHost) {
    window.location.href = window.location.href.replace(/#.*/, '');
}
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top