From: Richard Worth Date: Wed, 2 Sep 2009 19:30:46 +0000 (+0000) Subject: fixed a little issue in Chrome, Safari X-Git-Tag: 1.8a2~116 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=65457fea4c4d9feb8ebf5d7e8dc049161d2a45cd;p=jquery-ui.git fixed a little issue in Chrome, Safari --- 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;