diff --git a/scripts/uncompressed/history.js b/scripts/uncompressed/history.js index 0e7cb1ec..758425fd 100644 --- a/scripts/uncompressed/history.js +++ b/scripts/uncompressed/history.js @@ -1608,7 +1608,7 @@ */ History.onPopState = function(event,extra){ // Prepare - var stateId = false, newState = false, currentHash, currentState; + var stateId = false, newState = false, currentHash, currentState, wasExpected; // Reset the double check History.doubleCheckComplete(); @@ -1647,6 +1647,7 @@ else if ( History.expectedStateId ) { // Vanilla: A new state was pushed, and popstate was called manually newState = History.getStateById(History.expectedStateId); + wasExpected = !! newState; } else { // Initial State @@ -1677,8 +1678,10 @@ // Force update of the title History.setTitle(newState); - // Fire Our Event - History.Adapter.trigger(window,'statechange'); + // Fire Our Event .. match popstate semantics + if ( ! wasExpected ) + History.Adapter.trigger(window,'statechange'); + History.busy(false); // Return true