You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If on page /fruits/banana#calories you click on a link href "/veggies/tomato" (no other attribute), the page will reload. No problem with either /fruits/banana# or /fruits/banana. Sounds like an issue with handling hash?
The text was updated successfully, but these errors were encountered:
If you are calling page.stop() and page.start(), it may be because there is a bug in page.start() that doesn't set this._running = true; if you specified {dispatch: false}
Please see lines 551 and 552 of page.js.
Line 552 should have been put before line 551, or at the very least there should have been a way to set it to true.
I had to modify page.js for my website to work properly, but fortunately it was easy to modify.
Setup
Two routes will render different pages:
Problem
If on page
/fruits/banana#calories
you click on a link href"/veggies/tomato"
(no other attribute), the page will reload. No problem with either/fruits/banana#
or/fruits/banana
. Sounds like an issue with handling hash?The text was updated successfully, but these errors were encountered: