From 1319c3f33ee1a7a6252fbe92403922cf56a02128 Mon Sep 17 00:00:00 2001 From: jlukic Date: Tue, 7 Jan 2014 11:06:05 -0500 Subject: [PATCH] Fixes issue where queued animation sometimes does not occur if same animation caused by lack of repaint --- src/modules/transition.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/modules/transition.js b/src/modules/transition.js index b6e442d50..5aab59770 100755 --- a/src/modules/transition.js +++ b/src/modules/transition.js @@ -159,6 +159,7 @@ $.fn.transition = function() { $module .one(animationEnd, function() { instance.queuing = false; + module.repaint(); module.animate.apply(this, settings); }) ; @@ -759,7 +760,7 @@ $.fn.transition.settings = { name : 'Transition', // debug content outputted to console - debug : false, + debug : true, // verbose debug output verbose : true,