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

Commit b1397f8

Browse files
apsdehalarschmitz
authored andcommitted
TextInput: Fix enhanced option
Fixes #8252 Closes #8454
1 parent 4c201f9 commit b1397f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/widgets/forms/textinput.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ $.widget( "mobile.textinput", {
6969
if ( !options.enhanced ) {
7070
this._enhance();
7171
} else {
72-
this._outer = ( isTextarea ? this.element.parent() : this.element );
72+
this._outer = ( isTextarea ? this.element : this.element.parent() );
7373
if ( isSearch ) {
7474
this._searchIcon = this._outer.children( ".ui-textinput-search-icon" );
7575
}

0 commit comments

Comments
 (0)