id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	blocking	blockedby
10819	"Eliminate ""this.on.call(this, """	anonymous	rwaldron	"{{{
one: function( types, selector, data, fn ) {
    return this.on.call( this, types, selector, data, fn, 1 );
},
}}}

can be simplified to:

{{{
one: function( types, selector, data, fn ) {
    return this.on( types, selector, data, fn, 1 );
},
}}}

since the `this` value is determined implicitly. Eliminating the extraneous `.call(this, ` saves 10 bytes from the minified file."	enhancement	closed	low	1.7.2	event	git	fixed				
