Bug Tracker

Opened 13 years ago

Closed 13 years ago

Last modified 11 years ago

#6277 closed bug (invalid)

IE8 Error in jQuery.extend()

Reported by: gzoller Owned by:
Priority: Milestone: 1.4.3
Component: effects Version: 1.4.2
Keywords: Cc:
Blocked by: Blocking:

Description

Invalid argument. (jquery-nightly.js, 5938) in IE8 (haven't tested other IE versions)

Currently from nightly 3/12/10:

5938: fx.elem.style[ fx.prop ] = (fx.prop === "width"
fx.prop === "height" ? Math.max(0, fx.now) : fx.now) + fx.unit;

Possible Fix:

5938: var value = fx.prop === "width"
fx.prop === "height" ? Math.max(0, fx.now) : fx.now;

5939: fx.elem.style[ fx.prop ] = (isNaN(value) ? 0 : value) + fx.unit;

Change History (1)

comment:1 Changed 13 years ago by john

Component: miscfx
Resolution: invalid
Status: newclosed

It doesn't look like this is related to .extend() - can you provide some code that triggers this error?

Note: See TracTickets for help on using tickets.