Bug Tracker

Ticket #2073 (closed bug: fixed)

Opened 9 months ago

Last modified 9 months ago

offset(): parent has no properties

Reported by: daepark Assigned to: brandon
Type: bug Priority: major
Milestone: 1.2.2 Component: offset
Version: 1.2.1 Keywords:
Cc: Needs: Review

Description

When calling offset, I sometimes get parent is not defined ("parent has no properties") error in firebug. The offending line is:

while ( parent.tagName && !/^body|html$/i.test(parent.tagName) ) {

checking for parent first seems to make this problem go away:

while ( parent && parent.tagName && !/^body|html$/i.test(parent.tagName) ) {

Attachments

Change History

Changed 9 months ago by brandon

  • status changed from new to closed
  • resolution set to fixed

Fixed in [4241]

Note: See TracTickets for help on using tickets.