Skip to content

Instantly share code, notes, and snippets.

View magcks's full-sized avatar
😀

Max von Buelow magcks

😀
View GitHub Profile
var popped = ('state' in window.history),
initialURL = window.location.href;
window.onpopstate = function(event) {
var initialPop = !popped && location.href == initialURL;
popped = true;
if (initialPop) return false;
var state = event.state;