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:
Ryan Neufeld 2011-07-07 11:59:47 -07:00
parent b761496ece
commit 92fcbe1672

View file

@ -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)" )