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:
parent
348a7bb683
commit
e695d87b14
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
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -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));
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
Loading…
Reference in New Issue