Open MelkorNemesis opened 9 years ago
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
window.history is undefined? It's not by default, you should probably investigate this.
window.history
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 undefinedIs there any way you can make this work (at least graceful degradation)?
Thanks