aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--demos/effect/easing.html3
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;