Skip to content

Commit 96a4f42

Browse files
committed
fixedToolbars: add iOS6 to iOS workarounds Fixes jquery-archive#5332 - Fixed header jumps around when iOS keyboard disappears
1 parent 1d80d2b commit 96a4f42

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

js/widgets/fixedToolbar.workarounds.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ define( [ "jquery", "../jquery.mobile.widget", "../jquery.mobile.core", "../jque
3131
return;
3232
}
3333
//check os version if it dosent match one with workarounds return
34-
if( os === "ios" && wkversion && wkversion > 533 && wkversion < 536 ) {
35-
//iOS 5 run all workarounds for iOS 5
34+
if( os === "ios" ) {
35+
//iOS workarounds
3636
self._bindScrollWorkaround();
3737
} else if( os === "android" && wkversion && wkversion < 534 ) {
3838
//Android 2.3 run all Android 2.3 workaround

0 commit comments

Comments
 (0)