only load new content onpopstate if the mid has actually changed
This commit is contained in:
parent
90b6afe06b
commit
f3554804bf
@ -24,7 +24,7 @@
|
||||
});
|
||||
|
||||
window.onpopstate = function(e) {
|
||||
if(e.state !== null)
|
||||
if(e.state !== null && e.state.b64mid !== bParam_mid)
|
||||
getData(e.state.b64mid, '');
|
||||
};
|
||||
});
|
||||
|
Reference in New Issue
Block a user