Fixed toolbar: changed hideDuringFocus logic to fix interaction with on-screen keyboard. (#4113, dcdf48f) (also fixes an issue on Android native browser.)
Page content's padding is not adjusted when fixed header elements changes its height. (#5619, 4f46cd4)
the first argument of updatePagePadding is expected to be a page, but when it is called from the throttledResize binding, it ends up as an event object, and the padding was being set on that instead of the page. This adds a check to ensure the arg is a page before setting its padding.
Clicking a currently active navbar tab removes ui-btn-active class and styling (#5707, 440f7c0)
Changed active state logic. Removed workaround for #1181. Fixed that issue by addressing the actual cause: event.target returns ui-btn-inner instead of the anchor
Simplify code for getAjaxFormData, (#5710, ee30a73).
When submitting a form via GET, strip query off URL before creating new query string.
Added "contentType" to settings for $.mobile.changePage with "data" argument. Thanks aristotelos! (420a179)
loadPage: update to account for if the page is prefetched done update basetag. (#5677, c8a8046)
Prefetching pages from other directories offsets -tag
Support: Turn off pushState inside FF iframes (54a3d79)
When submitting a form via GET, strip query off URL before creating new query string. (#5710, 92b813f)
Issues with history disabled with popups. (#5775, 2d7bebe)
If the default is prevented on the originalEvent of "navigate", do not go into _handleHashChange.
Removed extra function in transition. (f3fb077) "releasePageTransitionLock" sets "isPageTransitioning" to false; So no need to set is here as "releasePageTransitionLock" is called. Thanks poonkave!
Page div gets a vertical scrollbar on IE9 if panel is longer than page content.
Give content wrapper a min-height on IE7. (#5607, 056024d)
Because of IE7's min-height bug, the content wrapper doesn't inherit the min-height of the page. On short pages you see the page background below the content.
Add form reset via $.extend, not $.widget. (ab6dbff)
Force update on mousedown to prevent situation where user has typed in input but input has not yet blurred. (#5644, cc7a844)
Rangeslider makes FF (Mac OS) pause for few sec and throw error "too much recursion" when manually enter right value less than left one and click middle slider area
Add reset handling via $.extend, not $.widget to avoid additional subclass depth (ab6dbff)
Slider: drag should start only for left mouse button. Thanks stforek! (9dc7fc5)
Account for mouse and touch input event differences. "event.which" for mousedown can be 0 or 1, because it is 0 on mobile and 1 (left mouse button) on desktop (db9780c)
Added missing refresh method for reflow and column toggle tables. (#5842 and #5841, 922c562)
This method wasn't implemented fully for 1.3.0 but was documented in the API so we have now added this capability for both table modes. Thanks frequent!