Fixed #1701 by passing through the arguments as suggested.
[jquery.git] / src / event.js
index 6475cd9..d4a899b 100644 (file)
@@ -333,7 +333,7 @@ jQuery.fn.extend({
                        event.preventDefault();
                        
                        // and execute the function
-                       return args[this.lastToggle].apply( this, [event] ) || false;
+                       return args[this.lastToggle].apply( this, arguments ) || false;
                });
        },