diff options
author | Richard Worth <rdworth@gmail.com> | 2009-09-02 19:30:46 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2009-09-02 19:30:46 +0000 |
commit | 65457fea4c4d9feb8ebf5d7e8dc049161d2a45cd (patch) | |
tree | f5788431cce117e73c04c394fd1b561065e7f870 /demos/effect | |
parent | afc26e41eba932e1c12dcd8a48cb6c90fd4dd679 (diff) | |
download | jquery-ui-65457fea4c4d9feb8ebf5d7e8dc049161d2a45cd.tar.gz jquery-ui-65457fea4c4d9feb8ebf5d7e8dc049161d2a45cd.zip |
fixed a little issue in Chrome, Safari
Diffstat (limited to 'demos/effect')
-rw-r--r-- | demos/effect/easing.html | 3 |
1 files changed, 2 insertions, 1 deletions
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; |