Bug Tracker

Modify

Ticket #6277 (closed bug: invalid)

Opened 3 years ago

Last modified 15 months ago

IE8 Error in jQuery.extend()

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

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

comment:1 Changed 3 years ago by john

  • Status changed from new to closed
  • Resolution set to invalid
  • Component changed from misc to fx

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

Please follow the  bug reporting guidlines and use  jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.

View

Add a comment

Modify Ticket

Action
as closed
Author


E-mail address and user name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.