From 92fcbe1672d063129727ce043d194790a5b88fbd Mon Sep 17 00:00:00 2001 From: Ryan Neufeld Date: Thu, 7 Jul 2011 11:59:47 -0700 Subject: [PATCH] Fix for Bug #1931 - Collapsible Set - Visual Bug collapsable selector was using :first so set was only ever one element. changed find to children --- js/jquery.mobile.collapsible.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/jquery.mobile.collapsible.js b/js/jquery.mobile.collapsible.js index cea535c2..30fa4beb 100644 --- a/js/jquery.mobile.collapsible.js +++ b/js/jquery.mobile.collapsible.js @@ -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)" )