We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using Firefox 26, there're two glitches.
1) TypeError: invalid 'in' operand window.history [Break On This Error] this.popped = !!('state' in window.history) && !!window.history.state;
this.popped = !!('state' in window.history) && !!window.history.state;
After fixing this line to not use in operand, another glitch occurs. 2) window.history is undefined
in
Is there any way you can make this work (at least graceful degradation)?
Thanks
The text was updated successfully, but these errors were encountered:
window.history is undefined? It's not by default, you should probably investigate this.
window.history
Sorry, something went wrong.
No branches or pull requests
When using Firefox 26, there're two glitches.
1) TypeError: invalid 'in' operand window.history
[Break On This Error]
this.popped = !!('state' in window.history) && !!window.history.state;
After fixing this line to not use
in
operand, another glitch occurs.2) window.history is undefined
Is there any way you can make this work (at least graceful degradation)?
Thanks
The text was updated successfully, but these errors were encountered: