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

Commit 8756bd2

Browse files
committed
Fixes #4899
1 parent 6fb15be commit 8756bd2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

js/widgets/collapsible.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ $.widget( "mobile.collapsible", $.mobile.widget, {
5858
o.expandedIcon = collapsibleSet.jqmData( "expanded-icon" );
5959
}
6060
// Gets the preference icon position in the set
61-
if ( !o.iconPos ) {
62-
o.iconPos = collapsibleSet.jqmData( "iconpos" );
61+
if ( !o.iconpos ) {
62+
o.iconpos = collapsibleSet.jqmData( "iconpos" );
6363
}
6464
// Inherit the preference for inset from collapsible-set or set the default value to ensure equalty within a set
6565
if ( collapsibleSet.jqmData( "inset" ) !== undefined ) {
@@ -99,7 +99,7 @@ $.widget( "mobile.collapsible", $.mobile.widget, {
9999
.buttonMarkup({
100100
shadow: false,
101101
corners: false,
102-
iconpos: $el.jqmData( "iconpos" ) || o.iconPos || "left",
102+
iconpos: $el.jqmData( "iconpos" ) || o.iconpos || "left",
103103
icon: collapsedIcon,
104104
mini: o.mini,
105105
theme: o.theme

0 commit comments

Comments
 (0)