Has anyone run across this behaviour? There isn\'t much mentioned about it, and the other posts are different in nature. This appears to be inconsistent w/ documentation about b
How I solved this:
var pop = 0; window.onpopstate = function(event) { if (document.location.pathname === '/' && pop > 1) { pop = 0; document.location = 'http://localhost:9000/'; } pop++; };