We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 559c604 commit 4af3c18Copy full SHA for 4af3c18
modules/locations/HashLocation.js
@@ -36,8 +36,9 @@ function onHashChange() {
36
// changed. It was probably caused by the user clicking the Back
37
// button, but may have also been the Forward button or manual
38
// manipulation. So just guess 'pop'.
39
- notifyChange(_actionType || LocationActions.POP);
+ var curActionType = _actionType;
40
_actionType = null;
41
+ notifyChange(curActionType || LocationActions.POP);
42
}
43
44
0 commit comments