2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00
discourse/app/assets/javascripts/onpopstate-handler.js
2020-09-04 13:42:47 +02:00

7 lines
246 B
JavaScript

// discourse-skip-module
window.onpopstate = function (event) {
// check if Discourse object exists if not take care of back navigation
if (event.state && !window.hasOwnProperty("Discourse")) {
window.location = document.location;
}
};