Skip to content

Commit 121141b

Browse files
committed
minor fixes
1 parent 6fc7ba3 commit 121141b

File tree

1 file changed

+2
-2
lines changed
  • 7-animation/2-css-animations/1-animate-logo-css/solution.view

1 file changed

+2
-2
lines changed

7-animation/2-css-animations/1-animate-logo-css/solution.view/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@
2727
<img id="flyjet" src="https://en.js.cx/clipart/flyjet.jpg">
2828

2929
<script>
30-
let ended = false;
30+
let ended = false; // will change to true after the animation finishes
3131

3232
flyjet.onclick = function() {
3333

3434
flyjet.addEventListener('transitionend', function() {
35-
if (!ended) {
35+
if (!ended) { // check to show the message only once
3636
ended = true;
3737
alert('Done!');
3838
}

0 commit comments

Comments
 (0)