Skip to content

Commit

Permalink
#2583 onHide/onShow should be last as well
Browse files Browse the repository at this point in the history
  • Loading branch information
jlukic committed Jul 17, 2015
1 parent bb9bbad commit cba22a8
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 @@ -767,8 +767,8 @@ $.fn.transition = function() {
module.remove.display();
module.remove.visible();
module.set.hidden();
settings.onHide.call(this);
module.force.hidden();
settings.onHide.call(this);
settings.onComplete.call(this);
// module.repaint();
},
Expand All @@ -777,8 +777,8 @@ $.fn.transition = function() {
module.verbose('Showing element', display);
module.remove.hidden();
module.set.visible();
settings.onShow.call(this);
module.force.visible();
settings.onShow.call(this);
settings.onComplete.call(this);
// module.repaint();
},
Expand Down

0 comments on commit cba22a8

Please sign in to comment.