From 65457fea4c4d9feb8ebf5d7e8dc049161d2a45cd Mon Sep 17 00:00:00 2001 From: Richard Worth Date: Wed, 2 Sep 2009 19:30:46 +0000 Subject: [PATCH] fixed a little issue in Chrome, Safari --- demos/effect/easing.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/demos/effect/easing.html b/demos/effect/easing.html index 6640e54d2..1bc9d8c83 100644 --- a/demos/effect/easing.html +++ b/demos/effect/easing.html @@ -60,8 +60,9 @@ ctx.stroke(); ctx.strokeStyle = "white"; - ctx.lineWidth = 2; ctx.beginPath(); + ctx.lineWidth = 2; + ctx.moveTo(width * 0.1, drawHeight); $.each(new Array(width), function(position) { var val = impl(0, position, 0, 1, height); if (/linear|jswing/.test(name)) val = position / width; -- 2.39.5