Passing extraParameters in trigger method not working for checkbox

Passing extraParameters in trigger method not working for checkbox

I have pass extra parameters for button and checkbox while trigger click using trigger method. But it's not working for checkbox.

Please check the below example.

http://jsfiddle.net/abtraju1/sz4d3ag0/7/

This issue happened due to below code(Line no: 4870-4875) only for checkbox.
trigger: function() {
if ( this.type === "checkbox" && this.click && jQuery.nodeName( this, "input" ) ) {
this.click();
return false;
}