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

Commit 147ee42

Browse files
committed
Button: add missing space in class for icon Fixes #6217 - Icons not showing correctly on input buttons
1 parent 69699d0 commit 147ee42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/widgets/forms/button.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ $.widget( "mobile.button", {
6464
( this.options.mini ? " ui-mini" : "" ) +
6565
( this.options.disabled ? " ui-disabled" : "" ) +
6666
( ( this.options.iconpos && this.options.icon ) ? " ui-btn-icon-" + this.options.iconpos : ( this.options.icon ? " ui-btn-icon-left" : "" ) ) +
67-
( this.options.icon ? "ui-icon-" + this.options.icon : "" ) +
67+
( this.options.icon ? " ui-icon-" + this.options.icon : "" ) +
6868
"' >" + this.element.val() + "</div>");
6969
},
7070

0 commit comments

Comments
 (0)