id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	blocking	blockedby
8858	Special events - _default method doesn't have access to the `data` argument of the trigger method	centi	dmethvin	"The trigger method has an optional second argument `data` which is passed to all event handlers bound to the particular event which was triggered.

We can use special events, to define the behavior of our custom events, including a _default method. I would expect that this _default method will have access to the `data` argument, like the event handlers. But it doesn't.

'''jQuery source, line 2501:'''

{{{
if ( (!special._default || special._default.call( elem, event ) === false) &&
}}}

'''Suggested fix'''

{{{
if ( (!special._default || special._default.call( elem, event, data ) === false) &&
}}}
"	enhancement	closed	blocker	1.7	event	1.5.2	fixed	1.7-discuss			
