diff --git a/Chapter 14/Code Samples/ch14-drawing-image.html b/Chapter 14/Code Samples/ch14-drawing-image.html index 0c49e2f..58b9257 100755 --- a/Chapter 14/Code Samples/ch14-drawing-image.html +++ b/Chapter 14/Code Samples/ch14-drawing-image.html @@ -15,7 +15,7 @@ canvas.height = 300; canvas.width = 300; let ctx = canvas.getContext("2d"); - let myImage = document.getElementById("flower"); + let myImage = document.getElementById("flower"); //This line adds the image on the canvas, you can hide the tag by " style="display: none;" " ctx.drawImage(myImage, 10, 10); };