Skip to main content

Bug Tracker

Side navigation

#57 closed bug (fixed)

Opened July 09, 2006 06:19PM UTC

Closed July 14, 2006 10:50PM UTC

Last modified June 20, 2007 02:19AM UTC

Event handler registration is broken in rev 134

Reported by: aaron.heimlich@gmail Owned by:
Priority: undecided Milestone: 1.0
Component: core Version: 1.0a
Keywords: Cc:
Blocked by: Blocking:
Description

Event handlers registered through this.bind() are not called at all.

I fixed this by changing line 525 of [source:jquery/jquery/jquery.js@134 jquery/jquery.js] from:

var a = arguments;

to:

var args = arguments;

and changing line 527 from:

n.apply( this, a );

to:

n.apply( this, args );

Attachments (0)
Change History (1)

Changed July 14, 2006 10:50PM UTC by john comment:1

resolution: → fixed
status: newclosed

Fixed in SVN.