diff options
author | Scott González <scott.gonzalez@gmail.com> | 2015-03-09 16:03:22 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2015-03-12 07:35:27 -0400 |
commit | f33027840cdac5152599da66635981bbe68c6bda (patch) | |
tree | a52f4063e0a2aab02af24d26eee590eba797882e /ui/autocomplete.js | |
parent | 6111b17710ab4e14bb119e735de9cfa9285badab (diff) | |
download | jquery-ui-f33027840cdac5152599da66635981bbe68c6bda.tar.gz jquery-ui-f33027840cdac5152599da66635981bbe68c6bda.zip |
Core: Add methods to work around IE active element bugs
Closes gh-1478
Diffstat (limited to 'ui/autocomplete.js')
-rw-r--r-- | ui/autocomplete.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/autocomplete.js b/ui/autocomplete.js index 3453ee399..399a190b5 100644 --- a/ui/autocomplete.js +++ b/ui/autocomplete.js @@ -286,7 +286,7 @@ $.widget( "ui.autocomplete", { previous = this.previous; // only trigger when focus was lost (click on menu) - if ( this.element[ 0 ] !== this.document[ 0 ].activeElement ) { + if ( this.element[ 0 ] !== $.ui.safeActiveElement( this.document[ 0 ] ) ) { this.element.focus(); this.previous = previous; // #6109 - IE triggers two focus events and the second |