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

Commit

Permalink
Merge branch 'fix-4724'
Browse files Browse the repository at this point in the history
  • Loading branch information
jaspermdegroot committed Nov 20, 2012
2 parents b5865d0 + 03ac36c commit e61c92f
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
15 changes: 13 additions & 2 deletions js/widgets/fixedToolbar.js
Expand Up @@ -253,7 +253,7 @@ define( [ "jquery", "../jquery.mobile.widget", "../jquery.mobile.core", "../jque
},

_bindToggleHandlers: function() {
var self = this,
var self = this, delay,
o = self.options,
$el = self.element;

Expand All @@ -271,7 +271,18 @@ define( [ "jquery", "../jquery.mobile.widget", "../jquery.mobile.core", "../jque
//and issue #4113 Header and footer change their position after keyboard popup - iOS
//and issue #4410 Footer navbar moves up when clicking on a textbox in an Android environment
if ( screen.width < 1025 && $( e.target ).is( o.hideDuringFocus ) && !$( e.target ).closest( ".ui-header-fixed, .ui-footer-fixed" ).length ) {
self[ ( e.type === "focusin" && self._visible ) ? "hide" : "show" ]();
//Fix for issue #4724 Moving through form in Mobile Safari with "Next" and "Previous" system
//controls causes fixed position, tap-toggle false Header to reveal itself
if( e.type === "focusout" && self._visible ) {
//wait for the stack to unwind and see if we have jumped to another input
delay = setTimeout( function() {
self.show();
}, 0 );
} else if ( e.type === "focusin" && self._visible ) {
//if we have jumped to another input clear the time out to cancel the show.
clearTimeout( delay );
self.hide();
}
}
});
},
Expand Down
6 changes: 6 additions & 0 deletions tests/unit/fixed-toolbar/fixedToolbar.js
Expand Up @@ -195,11 +195,17 @@

function() {
ok( !$( '#classes-test-g' ).hasClass('ui-fixed-hidden'), 'The toolbar does not have the ui-fixed-hidden class');
},

function() {
$( '#classes-test-g' ).fixedtoolbar( "toggle" );
},

function() {
ok( $( '#classes-test-g' ).hasClass('ui-fixed-hidden'), 'The toolbar does have the ui-fixed-hidden class');
},

function() {
$( '#classes-test-g' ).fixedtoolbar( "toggle" );
},

Expand Down

0 comments on commit e61c92f

Please sign in to comment.