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

Commit

Permalink
Fixes #4899
Browse files Browse the repository at this point in the history
(cherry picked from commit 8756bd2)

Conflicts:

	js/jquery.mobile.collapsible.js
  • Loading branch information
gseguin committed Oct 16, 2012
1 parent dfb6083 commit 51e3c17
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions js/jquery.mobile.collapsible.js
Expand Up @@ -48,8 +48,8 @@ $.widget( "mobile.collapsible", $.mobile.widget, {
}

// Gets the preference icon position in the set
if ( !o.iconPos ) {
o.iconPos = collapsibleSet.jqmData( "iconpos" );
if ( !o.iconpos ) {
o.iconpos = collapsibleSet.jqmData( "iconpos" );
}

if( !o.mini ) {
Expand All @@ -70,7 +70,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: "plus",
mini: o.mini,
theme: o.theme
Expand Down

0 comments on commit 51e3c17

Please sign in to comment.