From 9b9aabc0f158dd6905995e4f7a3432ef5ba55b47 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sun, 24 Jan 2016 14:38:53 -0500 Subject: [PATCH] fix ios 9.3 navigation --- .../thirdparty/jquerymobile-1.4.5/jquery.mobile.custom.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/jquery.mobile.custom.js b/dashboard-ui/thirdparty/jquerymobile-1.4.5/jquery.mobile.custom.js index df6fc2d158..beef9913c6 100644 --- a/dashboard-ui/thirdparty/jquerymobile-1.4.5/jquery.mobile.custom.js +++ b/dashboard-ui/thirdparty/jquerymobile-1.4.5/jquery.mobile.custom.js @@ -764,7 +764,9 @@ // a `popstate` on hash assignement or `replaceState` then we need avoid the branch // that swallows the event created by the popstate generated by the hash assignment // At the time of this writing this happens with Opera 12 and some version of IE - this.preventHashAssignPopState = false; + if (!browserInfo.safari) { + this.preventHashAssignPopState = false; + } state = $.extend({ url: href,