mirror of
https://github.com/discourse/discourse.git
synced 2024-12-22 15:03:50 +08:00
a084680f1d
All files under `app/assets/javascripts/scripts` will be run through babel, given sourcemaps, and output under `/assets/{name}.js`. This is another step towards removing our sprockets dependence.
7 lines
221 B
JavaScript
7 lines
221 B
JavaScript
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;
|
|
}
|
|
};
|