Side navigation
#8456 closed bug (fixed)
Opened March 07, 2011 02:02AM UTC
Closed March 21, 2011 02:54PM UTC
Last modified March 09, 2012 04:02PM UTC
trigger('mouseover') no longer triggers mouseenter
Reported by: | john.firebaugh | Owned by: | dmethvin |
---|---|---|---|
Priority: | blocker | Milestone: | 1.5.2 |
Component: | event | Version: | 1.5.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Alerts in 1.4.4, but not in 1.5. Caused by this commit:
https://github.com/jquery/jquery/commit/b46dff39c35ae05f92f6909ff8d07aa470e4a8d4
Attachments (0)
Change History (6)
Changed March 07, 2011 02:45PM UTC by comment:1
component: | unfiled → event |
---|---|
milestone: | 1.next → 1.5.2 |
priority: | undecided → blocker |
status: | new → open |
Changed March 07, 2011 02:55PM UTC by comment:2
Ah, someone saw this bug before me, I have another fiddle example that documents it and shows the fix:
This works with jquery up to and including 1.5, starts breaking with 1.5.1
The problem is on line 2788 of dist/jquery.js (of 1.5.1)
Modified jquery.js
2788
- if ( parent !== document && !parent.parentNode ) {
+ if ( parent !== document && (parent && !parent.parentNode )) {
Changed March 07, 2011 05:05PM UTC by comment:3
owner: | → dmethvin |
---|---|
status: | open → assigned |
Changed March 10, 2011 03:41AM UTC by comment:4
_comment0: | Fix: https://github.com/jquery/jquery/pull/266 \ \ → 1299728606715656 |
---|
Fix: https://github.com/jquery/jquery/pull/266
BTW, john.firebaugh, thanks for the report and for finding the problem commit!
Changed March 21, 2011 02:54PM UTC by comment:5
resolution: | → fixed |
---|---|
status: | assigned → closed |
Landed.