From ceccf507be95d48ac50b0fd2e0f0389831941664 Mon Sep 17 00:00:00 2001 From: Robert Brignull Date: Sun, 7 May 2017 21:30:16 +0100 Subject: [PATCH] Demos: Fix a typo with an extra semicolon Closes gh-1812 --- demos/effect/easing.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demos/effect/easing.html b/demos/effect/easing.html index b22c69580..4bee1c41f 100644 --- a/demos/effect/easing.html +++ b/demos/effect/easing.html @@ -34,7 +34,7 @@ canvas.width = width; canvas.height = height; var drawHeight = height * 0.8, - cradius = 10; + cradius = 10, ctx = canvas.getContext( "2d" ); ctx.fillStyle = "black"; -- 2.39.5