diff options
author | John Resig <jeresig@gmail.com> | 2009-12-06 18:02:58 -0800 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2009-12-06 18:02:58 -0800 |
commit | 542099a278e79dce38e814e7e7b448a1b73df82f (patch) | |
tree | a0ab68bffdeb3731af4ad9391b248ca6dfccc9a7 /src/support.js | |
parent | 19ad49e607e91919210a766e17f67f0fc6af7af1 (diff) | |
download | jquery-542099a278e79dce38e814e7e7b448a1b73df82f.tar.gz jquery-542099a278e79dce38e814e7e7b448a1b73df82f.zip |
Make sure that we're doing proper focus bubble testing. Also simplified the logic for the IE focusin/focusout handling.
Diffstat (limited to 'src/support.js')
-rw-r--r-- | src/support.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/support.js b/src/support.js index ad8566d8b..9d5558f39 100644 --- a/src/support.js +++ b/src/support.js @@ -109,6 +109,7 @@ jQuery.support.submitBubbles = eventSupported("submit"); jQuery.support.changeBubbles = eventSupported("change"); + jQuery.support.focusBubbles = eventSupported("focus"); // release memory in IE root = script = div = all = a = null; |