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

Commit 51e3c17

Browse files
committed
Fixes #4899
(cherry picked from commit 8756bd2) Conflicts: js/jquery.mobile.collapsible.js
1 parent dfb6083 commit 51e3c17

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

js/jquery.mobile.collapsible.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ $.widget( "mobile.collapsible", $.mobile.widget, {
4848
}
4949

5050
// Gets the preference icon position in the set
51-
if ( !o.iconPos ) {
52-
o.iconPos = collapsibleSet.jqmData( "iconpos" );
51+
if ( !o.iconpos ) {
52+
o.iconpos = collapsibleSet.jqmData( "iconpos" );
5353
}
5454

5555
if( !o.mini ) {
@@ -70,7 +70,7 @@ $.widget( "mobile.collapsible", $.mobile.widget, {
7070
.buttonMarkup({
7171
shadow: false,
7272
corners: false,
73-
iconpos: $el.jqmData( "iconpos" ) || o.iconPos || "left",
73+
iconpos: $el.jqmData( "iconpos" ) || o.iconpos || "left",
7474
icon: "plus",
7575
mini: o.mini,
7676
theme: o.theme

0 commit comments

Comments
 (0)