Skip to content

Commit

Permalink
#2583 Fixes onComplete is not called at true 'end of animation'
Browse files Browse the repository at this point in the history
  • Loading branch information
jlukic committed Jul 17, 2015
1 parent 6a6c295 commit bb9bbad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/definitions/modules/transition.js
Original file line number Diff line number Diff line change
Expand Up @@ -768,8 +768,8 @@ $.fn.transition = function() {
module.remove.visible();
module.set.hidden();
settings.onHide.call(this);
settings.onComplete.call(this);
module.force.hidden();
settings.onComplete.call(this);
// module.repaint();
},

Expand All @@ -778,8 +778,8 @@ $.fn.transition = function() {
module.remove.hidden();
module.set.visible();
settings.onShow.call(this);
settings.onComplete.call(this);
module.force.visible();
settings.onComplete.call(this);
// module.repaint();
},

Expand Down

0 comments on commit bb9bbad

Please sign in to comment.