mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-04-27 17:34:45 +00:00
mobilize func had a few unscoped selectors to fix up. thx Doug.
This commit is contained in:
parent
ed0faf004f
commit
142cffdfc2
1 changed files with 3 additions and 3 deletions
|
|
@ -366,13 +366,13 @@
|
|||
//selects
|
||||
$el.find('select').customSelect();
|
||||
//tabs
|
||||
$('[data-role="tabs"]').tabs({fixedAsFooter:true});
|
||||
$el.find('[data-role="tabs"]').tabs({fixedAsFooter:true});
|
||||
//global nav
|
||||
$('[data-role="globalnav"]').globalnav();
|
||||
$el.find('[data-role="globalnav"]').globalnav();
|
||||
//fix toolbars
|
||||
$el.fixHeaderFooter();
|
||||
//buttons from links in headers,footers,bars, or with data-role
|
||||
$('.ui-header a, .ui-footer a, .ui-bar a, [data-role="button"]').not('.ui-btn').buttonMarkup();
|
||||
$el.find('.ui-header a, .ui-footer a, .ui-bar a, [data-role="button"]').not('.ui-btn').buttonMarkup();
|
||||
//vertical controlgroups
|
||||
$el.find('[data-role="controlgroup"]:not([data-type="horizontal"])').controlgroup();
|
||||
//horizontal controlgroups
|
||||
|
|
|
|||
Loading…
Reference in a new issue