]> source.dussan.org Git - jquery.git/commitdiff
Fix #10576. Add alias for jQuery.event.handle so voyeur code still works.
authorDave Methvin <dave.methvin@gmail.com>
Wed, 26 Oct 2011 20:02:20 +0000 (16:02 -0400)
committerDave Methvin <dave.methvin@gmail.com>
Wed, 26 Oct 2011 20:02:20 +0000 (16:02 -0400)
Between new 1.7 special event hooks and jQuery.event.simulate() we have a much cleaner solution than the people calling jQuery.event.handle are doing, but we shouldn't break their use of this undocumented internal interface for now.

src/event.js

index bec343fd2f9d3b3152a27bcb0d7f39168737b52d..2171f4be472239a9c98764aa67000fa0ea0ea3fb 100644 (file)
@@ -618,6 +618,10 @@ jQuery.event = {
        }
 };
 
+// Some plugins are using, but it's undocumented/deprecated and will be removed.
+// The 1.7 special event interface should provide all the hooks needed now.
+jQuery.event.handle = jQuery.event.dispatch;
+
 jQuery.removeEvent = document.removeEventListener ?
        function( elem, type, handle ) {
                if ( elem.removeEventListener ) {