DoomDuck / transcendence

0 stars 0 forks source link

Inhance expirience by overriding browser back button to navigate #55

Closed DoomDuck closed 2 years ago

DoomDuck commented 2 years ago

At the moment we are using a dedicated back button on the page rather than the browser's back button

// Run code on back button press
window.onpopstate = function() {
   alert("clicked back button");
};
// Add state to get back to
history.pushState({}, '');

see the doc

DoomDuck commented 2 years ago

Done !