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

Commit

Permalink
TextInput: Fix enhanced option
Browse files Browse the repository at this point in the history
Fixes #8252
Closes #8454
  • Loading branch information
apsdehal authored and arschmitz committed Jul 4, 2016
1 parent 4c201f9 commit b1397f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/widgets/forms/textinput.js
Expand Up @@ -69,7 +69,7 @@ $.widget( "mobile.textinput", {
if ( !options.enhanced ) {
this._enhance();
} else {
this._outer = ( isTextarea ? this.element.parent() : this.element );
this._outer = ( isTextarea ? this.element : this.element.parent() );
if ( isSearch ) {
this._searchIcon = this._outer.children( ".ui-textinput-search-icon" );
}
Expand Down

0 comments on commit b1397f8

Please sign in to comment.