You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Temporary solution is adding the following but you can still see the #_=_ while the page is loading.
window.onload = function(e){
if (window.location.hash == '#_=_') {
window.location.hash = ''; // for older browsers, leaves a # behind
history.pushState('', document.title, window.location.pathname); // nice and clean
e.preventDefault(); // no page reload
}
}
The text was updated successfully, but these errors were encountered:
https://developers.facebook.com/blog/post/552/
The text was updated successfully, but these errors were encountered: