Skip to content

Commit 8b97e3c

Browse files
committed
Closes jquery-archive#3934 - Ensures that select menus and form buttons default to data-inline='false'
1 parent fca6898 commit 8b97e3c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

js/jquery.mobile.forms.button.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ $.widget( "mobile.button", $.mobile.widget, {
1313
theme: null,
1414
icon: null,
1515
iconpos: null,
16-
inline: null,
16+
inline: false,
1717
corners: true,
1818
shadow: true,
1919
iconshadow: true,

js/jquery.mobile.forms.select.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ $.widget( "mobile.selectmenu", $.mobile.widget, {
1414
disabled: false,
1515
icon: "arrow-d",
1616
iconpos: "right",
17-
inline: null,
17+
inline: false,
1818
corners: true,
1919
shadow: true,
2020
iconshadow: true,

0 commit comments

Comments
 (0)