Subscribe to:
Comments
(
Atom
)
/* Fix Mobile ?m=1 Redirect issue in browser history */ var currentURL = window.location.toString(); if (currentURL.indexOf("?m=1") != -1) { var newURL = currentURL.replace("?m=1", ""); window.history.replaceState({}, document.title, newURL); }
No comments