Skip to main content

Bug Tracker

Side navigation

#6277 closed bug (invalid)

Opened March 12, 2010 08:38PM UTC

Closed March 12, 2010 09:36PM UTC

Last modified March 15, 2012 12:06PM UTC

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;

Attachments (0)
Change History (1)

Changed March 12, 2010 09:36PM UTC by john comment:1

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?