From 25997ed40ec13a62d58170e9af1abd14c0bc4511 Mon Sep 17 00:00:00 2001 From: Steve Strutt Date: Mon, 25 Feb 2013 10:10:17 -0600 Subject: [PATCH] change event.handle to event.dispatch for jQ 1.9+ RE: https://github.com/stephband/jparallax/issues/53 --- js/jquery.event.frame.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/jquery.event.frame.js b/js/jquery.event.frame.js index 3afe6c7..b4326c3 100644 --- a/js/jquery.event.frame.js +++ b/js/jquery.event.frame.js @@ -98,9 +98,9 @@ if (!jQuery.event.special.frame) { }, handler: function(event){ // let jQuery handle the calling of event handlers - jQuery.event.handle.apply(this, arguments); + jQuery.event.dispatch.apply(this, arguments); } }; } -})(jQuery); \ No newline at end of file +})(jQuery);