From c1ad5713bda1914c245a36b4a0e04d8f7f49dafe Mon Sep 17 00:00:00 2001 From: toddparker Date: Tue, 27 Sep 2011 12:05:37 -0400 Subject: [PATCH] Added another check for orientation change event for Android 2.1 --- js/jquery.mobile.support.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/jquery.mobile.support.js b/js/jquery.mobile.support.js index 21c25dda..15297173 100644 --- a/js/jquery.mobile.support.js +++ b/js/jquery.mobile.support.js @@ -64,7 +64,7 @@ $.mobile.browser.ie = (function() { $.extend( $.support, { - orientation: "orientation" in window, + orientation: "orientation" in window && "onorientationchange" in window, touch: "ontouchend" in document, cssTransitions: "WebKitTransitionEvent" in window, pushState: "pushState" in history && "replaceState" in history,