Browse Source

Fixes issue where queued animation sometimes does not occur if same animation caused by lack of repaint

beta
jlukic 11 years ago
parent
commit
1319c3f33e
  1. 3
      src/modules/transition.js

3
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,

Loading…
Cancel
Save