#57 closed bug (fixed)
Event handler registration is broken in rev 134
Reported by: | 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/[email protected] 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 );
Note: See
TracTickets for help on using
tickets.
Fixed in SVN.