Created
October 23, 2019 12:29
-
-
Save chestozo/abc4d42175df61467f01de04549614d0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
const methods = [ 'pushState', 'replaceState', 'back', 'forward', 'go' ] | |
const _originals = {} | |
methods.forEach((m) => { | |
_originals[m] = window.history[m] | |
window.history[m] = function() { | |
console.log('XXX', m, arguments) | |
return _originals[m].apply(window.history, arguments) | |
} | |
}) | |
})() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment