From bcd1c9b59fe3fa7fde84fdeeef809ae00a96e7d9 Mon Sep 17 00:00:00 2001 From: Craig Dennis Date: Sat, 17 Oct 2015 01:05:28 +0100 Subject: [PATCH] Revert "prevent event from bubbling up." --- dist/jquery.animatecss.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dist/jquery.animatecss.js b/dist/jquery.animatecss.js index bff9f22..32bb217 100644 --- a/dist/jquery.animatecss.js +++ b/dist/jquery.animatecss.js @@ -67,8 +67,7 @@ } }; complete = function(element) { - return element.one(transitionEnd, function(event) { - event.stopPropagation(); + return element.one(transitionEnd, function() { return callback(element); }); };