mirror of
https://github.com/discourse/discourse.git
synced 2025-02-15 17:12:44 +08:00
![David Taylor](/assets/img/avatar_default.png)
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;
|
|
}
|
|
};
|