Skip to content

Commit 21d8125

Browse files
revert changes to double quotes
1 parent 6aeed8b commit 21d8125

File tree

1 file changed

+2
-2
lines changed
  • 7-animation/3-js-animation/2-animate-ball-hops

1 file changed

+2
-2
lines changed

7-animation/3-js-animation/2-animate-ball-hops/solution.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ animate({
1717
duration: 2000,
1818
timing: makeEaseOut(bounce),
1919
draw: function (progress) {
20-
ball.style.top = height * progress + 'px'
20+
ball.style.top = height * progress + "px"
2121
}
2222
});
2323

@@ -26,7 +26,7 @@ animate({
2626
duration: 2000,
2727
timing: makeEaseOut(quad),
2828
draw: function (progress) {
29-
ball.style.left = width * progress + 'px'
29+
ball.style.left = width * progress + "px"
3030
}
3131
});
3232
```

0 commit comments

Comments
 (0)