mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-16 22:10:25 +00:00
Fix for issue #1929 (second attempt)
This commit is contained in:
parent
6b1343d946
commit
ebd4eeced0
2 changed files with 2 additions and 2 deletions
|
|
@ -32,7 +32,7 @@ $.fn.controlgroup = function(options){
|
|||
.end()
|
||||
.filter(':last').addClass(flCorners[1]).addClass('ui-controlgroup-last');
|
||||
}
|
||||
flipClasses($(this).find('.ui-btn'));
|
||||
flipClasses($(this).find('.ui-btn'+(o.dontFilterOutInvisible?'':':visible')));
|
||||
flipClasses($(this).find('.ui-btn-inner'));
|
||||
if(o.shadow){
|
||||
$(this).addClass('ui-shadow');
|
||||
|
|
|
|||
|
|
@ -134,7 +134,7 @@ $.widget( "mobile.page", $.mobile.widget, {
|
|||
|
||||
$elem
|
||||
.find(":jqmData(role='controlgroup')")
|
||||
.controlgroup();
|
||||
.controlgroup({dontFilterOutInvisible: true});
|
||||
|
||||
//links within content areas
|
||||
$elem.find( "a:not(.ui-btn):not(.ui-link-inherit)" )
|
||||
|
|
|
|||
Loading…
Reference in a new issue