Skip to content
This repository has been archived by the owner on Oct 8, 2021. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixes #4899
  • Loading branch information
gseguin committed Oct 15, 2012
1 parent 6fb15be commit 8756bd2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions js/widgets/collapsible.js
Expand Up @@ -58,8 +58,8 @@ $.widget( "mobile.collapsible", $.mobile.widget, {
o.expandedIcon = collapsibleSet.jqmData( "expanded-icon" );
}
// Gets the preference icon position in the set
if ( !o.iconPos ) {
o.iconPos = collapsibleSet.jqmData( "iconpos" );
if ( !o.iconpos ) {
o.iconpos = collapsibleSet.jqmData( "iconpos" );
}
// Inherit the preference for inset from collapsible-set or set the default value to ensure equalty within a set
if ( collapsibleSet.jqmData( "inset" ) !== undefined ) {
Expand Down Expand Up @@ -99,7 +99,7 @@ $.widget( "mobile.collapsible", $.mobile.widget, {
.buttonMarkup({
shadow: false,
corners: false,
iconpos: $el.jqmData( "iconpos" ) || o.iconPos || "left",
iconpos: $el.jqmData( "iconpos" ) || o.iconpos || "left",
icon: collapsedIcon,
mini: o.mini,
theme: o.theme
Expand Down

0 comments on commit 8756bd2

Please sign in to comment.