#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:
fx.prop === "height" ? Math.max(0, fx.now) : fx.now) + fx.unit; |
Possible Fix:
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
Component: | misc → fx |
---|---|
Resolution: | → invalid |
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
It doesn't look like this is related to .extend() - can you provide some code that triggers this error?