r3185 committed - fixed a little issue in Chrome, Safari

r3185 committed - fixed a little issue in Chrome, Safari


Revision: 3185
Author: rdworth
Date: Wed Sep 2 12:30:46 2009
Log: fixed a little issue in Chrome, Safari
http://code.google.com/p/jquery-ui/source/detail?r=3185
Modified:
/trunk/demos/effect/easing.html
=======================================
--- /trunk/demos/effect/easing.html    Wed Sep 2 12:23:38 2009
+++ /trunk/demos/effect/easing.html    Wed Sep 2 12:30:46 2009
@@ -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;