Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix for issue jquery-archive#4019 - Persistent headers and footers pl…
…aced under content after transition - Header and footer were both being appended broke out to prepend header and append footer.
  • Loading branch information
arschmitz committed Oct 16, 2012
1 parent 7f27938 commit d995dfe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion js/widgets/fixedToolbar.js
Expand Up @@ -157,7 +157,8 @@ define( [ "jquery", "../jquery.mobile.widget", "../jquery.mobile.core", "../jque
nextFooter.add( nextHeader ).appendTo( $.mobile.pageContainer );

ui.nextPage.one( "pageshow", function() {
nextFooter.add( nextHeader ).appendTo( this );
nextHeader.prependTo( this );
nextFooter.appendTo( this );
});
}
}
Expand Down

0 comments on commit d995dfe

Please sign in to comment.