Bug Tracker

Ticket #2934 (closed bug: invalid)

Opened 6 months ago

Last modified 3 months ago

jQuery-1.2.3.js, jQuery-1.2.5.js - function step (animation)

Reported by: Tom Freudenberg Assigned to: anonymous
Type: bug Priority: major
Milestone: 1.2.5 Component: core
Version: 1.2.3 Keywords: animation step
Cc: Needs: Test Case

Description

jQuery will generate a lot of errors in browser console. This is for changing undefined array properties. This was happen after changes from jQuery 1.2.2 to jQuery 1.2.3.

Please find attached diff extract for jQuery-1.2.3 and jQuery-1.2.5
jQuery.1.2.3.js: change line 3242
jQuery.1.2.5.js: change line 3278

<  this.options.curAnim[ this.prop ] = true;
---
>  if (this.options.curAnim)
>     this.options.curAnim[ this.prop ] = true;

Attachments

Change History

Changed 6 months ago by flesler

  • need changed from Review to Test Case

Line 98 of fx.js:

  opt.curAnim = jQuery.extend({}, prop);

This should ensure we have a curAnim object. Could you provide a test case where this error appears ?

Changed 3 months ago by flesler

  • status changed from new to closed
  • resolution set to invalid
Note: See TracTickets for help on using tickets.