Fix browser back button

Fixes #17108

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
This commit is contained in:
Roeland Jago Douma 2019-10-21 21:36:17 +02:00 committed by npmbuildbot[bot]
parent 348a7bb683
commit e695d87b14
7 changed files with 314 additions and 285 deletions

14
core/js/dist/login.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

560
core/js/dist/main.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -35,4 +35,11 @@ $(document).ready(function () {
initCore(); initCore();
registerAppsSlideToggle(); registerAppsSlideToggle();
});
// fallback to hashchange when no history support
if (window.history.pushState) {
window.onpopstate = _.bind(OC.Util.History._onPopState, OC.Util.History);
} else {
$(window).on('hashchange', _.bind(OC.Util.History._onPopState, OC.Util.History));
}
})