diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2019-04-29 21:13:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-29 21:13:36 +0200 |
commit | 8a741376937dfacf9f82b2b88f93b239fe267435 (patch) | |
tree | 8a98a5e76134c9eaacad57933e74f7d0077e85cd /README.md | |
parent | 8fae21200e80647fec4389995c4879948d11ad66 (diff) | |
download | jquery-8a741376937dfacf9f82b2b88f93b239fe267435.tar.gz jquery-8a741376937dfacf9f82b2b88f93b239fe267435.zip |
Event: Stop shimming focusin & focusout events
Latest versions of all browsers now implement focusin & focusout natively
and they all converged on a common event order so it doesn't make much sense
for us to normalize it to a different order anymore.
Note that it means we no longer guarantee that focusin fires before focus
and focusout before blur.
Fixes gh-4300
Closes gh-4362
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -92,8 +92,7 @@ Some example modules that can be excluded are: - **effects**: The `.animate()` method and its shorthands such as `.slideUp()` or `.hide("slow")`. - **event**: The `.on()` and `.off()` methods and all event functionality. Also removes `event/alias`. - **event/alias**: All event attaching/triggering shorthands like `.click()` or `.mouseover()`. -- **event/focusin**: Cross-browser support for the focusin and focusout events. -- **event/trigger**: The `.trigger()` and `.triggerHandler()` methods. Used by **alias** and **focusin** modules. +- **event/trigger**: The `.trigger()` and `.triggerHandler()` methods. Used by the **alias** module. - **offset**: The `.offset()`, `.position()`, `.offsetParent()`, `.scrollLeft()`, and `.scrollTop()` methods. - **wrap**: The `.wrap()`, `.wrapAll()`, `.wrapInner()`, and `.unwrap()` methods. - **core/ready**: Exclude the ready module if you place your scripts at the end of the body. Any ready callbacks bound with `jQuery()` will simply be called immediately. However, `jQuery(document).ready()` will not be a function and `.on("ready", ...)` or similar will not be triggered. |