diff options
author | Oleg Gaidarenko <markelog@gmail.com> | 2015-12-22 15:19:13 +0300 |
---|---|---|
committer | Oleg Gaidarenko <markelog@gmail.com> | 2015-12-22 15:19:13 +0300 |
commit | a57975fb74d6abfc9479ad06d2b524866ac5a7d8 (patch) | |
tree | 9d674d5da3afe7e620350d31a11116f55140ed34 /src/event | |
parent | fa92796af8f80b7ab86c8d63de6bced0dfe305b6 (diff) | |
download | jquery-a57975fb74d6abfc9479ad06d2b524866ac5a7d8.tar.gz jquery-a57975fb74d6abfc9479ad06d2b524866ac5a7d8.zip |
Revert "Event: remove deprecated event aliases"
This reverts commit ef30bdf4f1b361b6f2e99f5b7233b419f95a62f2.
Diffstat (limited to 'src/event')
-rw-r--r-- | src/event/alias.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/event/alias.js b/src/event/alias.js index 75467353c..e94dc8c3a 100644 --- a/src/event/alias.js +++ b/src/event/alias.js @@ -3,9 +3,9 @@ define( [ "../event" ], function( jQuery ) { -jQuery.each( ( "blur focus focusin focusout resize scroll 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 contextmenu" ).split( " " ), + "change select submit keydown keypress keyup error contextmenu").split(" "), function( i, name ) { // Handle event binding |