Skip to content

Commit

Permalink
Launch v0.0.2 fixes #5 fixes #8 fixes #11 fixes fixes #13 #14 fixes #17
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian Lloyd committed Feb 13, 2014
1 parent 2cbdd58 commit f9ebce5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scrollReveal.js
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,8 @@ window.scrollReveal = (function (window) {
var transition = "-webkit-transition: all " + dur + " " + easing + " " + delay + ";" +
"-moz-transition: all " + dur + " " + easing + " " + delay + ";" +
"-o-transition: all " + dur + " " + easing + " " + delay + ";" +
"transition: all " + dur + " " + easing + " " + delay + ";";
"transition: all " + dur + " " + easing + " " + delay + ";" +
"-webkit-backface-visibility: hidden";

// The same as transition, but removing the delay for elements fading out.
var reset = "-webkit-transition: all " + dur + " " + easing + ";" +
Expand Down

0 comments on commit f9ebce5

Please sign in to comment.