diff options
author | Oleg Gaidarenko <markelog@gmail.com> | 2015-05-13 01:15:19 +0300 |
---|---|---|
committer | Oleg Gaidarenko <markelog@gmail.com> | 2015-05-19 13:43:34 +0300 |
commit | c074006a69db73a116dc04ec78844468a8cea7d3 (patch) | |
tree | 65d63ab030781f4d502260cc9eaed62b524fb1cc /src/event | |
parent | 61e21a4eaf479406b660328f4df7e3183c32386b (diff) | |
download | jquery-c074006a69db73a116dc04ec78844468a8cea7d3.tar.gz jquery-c074006a69db73a116dc04ec78844468a8cea7d3.zip |
Event: provide verbose comment for focus(in | out) & rename support prop
Closes gh-2312
Diffstat (limited to 'src/event')
-rw-r--r-- | src/event/support.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/event/support.js b/src/event/support.js index 85060db77..7ddca6a8d 100644 --- a/src/event/support.js +++ b/src/event/support.js @@ -2,7 +2,7 @@ define([ "../var/support" ], function( support ) { -support.focusinBubbles = "onfocusin" in window; +support.focusin = "onfocusin" in window; return support; |