Skip to content

Commit

Permalink
Fixes #12569. Improve Feature Detect For oldIE bubbling. closes gh-967
Browse files Browse the repository at this point in the history
  • Loading branch information
Merrifield, Jay authored and mikesherov committed Oct 17, 2012
1 parent fad0e22 commit 063ea02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/support.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ jQuery.support = (function() {
// are used, namely in IE. Short-circuiting here helps us to
// avoid an eval call (in setAttribute) which can cause CSP
// to go haywire. See: https://developer.mozilla.org/en/Security/CSP
if ( div.attachEvent ) {
if ( !div.addEventListener ) {
for ( i in {
submit: true,
change: true,
Expand Down

1 comment on commit 063ea02

@scottgonzalez
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This broke jQuery UI

http://swarm.jquery.org/job/1314

Please sign in to comment.