Skip to content
This repository has been archived by the owner on Oct 8, 2021. It is now read-only.

Commit

Permalink
fixedToolbars: add iOS6 to iOS workarounds Fixes #5332 - Fixed header…
Browse files Browse the repository at this point in the history
… jumps around when iOS keyboard disappears
  • Loading branch information
arschmitz committed Feb 1, 2013
1 parent 1d80d2b commit 96a4f42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/widgets/fixedToolbar.workarounds.js
Expand Up @@ -31,8 +31,8 @@ define( [ "jquery", "../jquery.mobile.widget", "../jquery.mobile.core", "../jque
return;
}
//check os version if it dosent match one with workarounds return
if( os === "ios" && wkversion && wkversion > 533 && wkversion < 536 ) {
//iOS 5 run all workarounds for iOS 5
if( os === "ios" ) {
//iOS workarounds
self._bindScrollWorkaround();
} else if( os === "android" && wkversion && wkversion < 534 ) {
//Android 2.3 run all Android 2.3 workaround
Expand Down

0 comments on commit 96a4f42

Please sign in to comment.