mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-04-16 04:11:01 +00:00
Fix for Bug #1931 - Collapsible Set - Visual Bug
collapsable selector was using :first so set was only ever one element. changed find to children
This commit is contained in:
parent
b761496ece
commit
92fcbe1672
1 changed files with 1 additions and 1 deletions
|
|
@ -132,7 +132,7 @@ $.widget( "mobile.collapsible", $.mobile.widget, {
|
|||
|
||||
});
|
||||
|
||||
var set = collapsibleParent.find( ":jqmData(role='collapsible'):first" );
|
||||
var set = collapsibleParent.children( ":jqmData(role='collapsible')" );
|
||||
|
||||
set.first()
|
||||
.find( "a:eq(0)" )
|
||||
|
|
|
|||
Loading…
Reference in a new issue