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

Commit

Permalink
Fixed toolbar: Fix for toolbars not becoming visible after hideDuring…
Browse files Browse the repository at this point in the history
…Focus. Fixes #5514/
  • Loading branch information
jaspermdegroot committed Jan 23, 2013
1 parent 24d6ae5 commit fb0ebe7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/widgets/fixedToolbar.js
Expand Up @@ -244,7 +244,7 @@ define( [ "jquery", "../jquery.mobile.widget", "../jquery.mobile.core", "../jque
if ( screen.width < 1025 && $( e.target ).is( o.hideDuringFocus ) && !$( e.target ).closest( ".ui-header-fixed, .ui-footer-fixed" ).length ) {
//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 ) {
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();
Expand Down

0 comments on commit fb0ebe7

Please sign in to comment.