This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/onpopstate-handler.js
2020-03-24 16:18:56 -04:00

8 lines
245 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;
}
};