Modify ↓
Ticket #12007 (closed bug: duplicate)
missing offsetX and offsetY in firefox
| Reported by: | machnikv@… | Owned by: | |
|---|---|---|---|
| Priority: | undecided | Milestone: | None |
| Component: | unfiled | Version: | 1.7.2 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
In firefox are offsetX and offsetY in events undefined.
Bugfix: Paste into mouseHooks -> filter function (line 3384) befor 'return event;' this to lines:
| event.clientX - jQuery(event.target).position().left; |
event.offsetY = event.offsetY event.clientY - jQuery(event.target).position().top;
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.

#edit