diff options
author | jeresig <jeresig@gmail.com> | 2010-01-12 17:03:34 -0500 |
---|---|---|
committer | jeresig <jeresig@gmail.com> | 2010-01-12 17:03:34 -0500 |
commit | 1d8b3a9af22c6c34383b6653ecc1e44c48325b94 (patch) | |
tree | a0e37ca9293d1f615bab207104c2525b87e626d3 /src | |
parent | 61983cbf176c599687c36ffbf4b64ae8697486a3 (diff) | |
download | jquery-1d8b3a9af22c6c34383b6653ecc1e44c48325b94.tar.gz jquery-1d8b3a9af22c6c34383b6653ecc1e44c48325b94.zip |
Make sure that the focusin and focusout easy-bind methods are exposed.
Diffstat (limited to 'src')
-rw-r--r-- | src/event.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/event.js b/src/event.js index c28e3704f..ea1c14e94 100644 --- a/src/event.js +++ b/src/event.js @@ -910,7 +910,7 @@ function liveConvert( type, selector ) { return ["live", type, selector.replace(/\./g, "`").replace(/ /g, "&")].join("."); } -jQuery.each( ("blur focus load resize scroll unload click dblclick " + +jQuery.each( ("blur focus focusin focusout load resize scroll unload click dblclick " + "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " + "change select submit keydown keypress keyup error").split(" "), function( i, name ) { |