mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-04-26 17:14:42 +00:00
Merge remote branch 'origin/master'
This commit is contained in:
commit
bfa6f6a3af
1 changed files with 4 additions and 3 deletions
|
|
@ -69,9 +69,10 @@ $.fixedToolbars = (function(){
|
|||
|
||||
//before page is shown, check for duplicate footer
|
||||
$('.ui-page').live('pagebeforeshow', function(event, ui){
|
||||
var page = $(event.target);
|
||||
var footer = page.find('[data-role="footer"]:not(.ui-sticky-footer)');
|
||||
var id = footer.data('id');
|
||||
var page = $(event.target),
|
||||
footer = page.find('[data-role="footer"]:not(.ui-sticky-footer)'),
|
||||
id = footer.data('id');
|
||||
stickyFooter = null;
|
||||
if (id)
|
||||
{
|
||||
stickyFooter = $('.ui-footer[data-id="' + id + '"].ui-sticky-footer');
|
||||
|
|
|
|||
Loading…
Reference in a new issue