Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/pmd
diff options
context:
space:
mode:
authorMarc Delisle <marc@infomarc.info>2007-02-10 18:58:46 +0300
committerMarc Delisle <marc@infomarc.info>2007-02-10 18:58:46 +0300
commit42ac66ad749fdeee60cf402bc3ae3dda920dbcd6 (patch)
tree47f19903fa1be65528f038ee55c3abf0f57b6ca2 /pmd
parentf0ba262783294df4ea1eae97c72ce3474e52f69a (diff)
get rid of propicon
Diffstat (limited to 'pmd')
-rw-r--r--pmd/scripts/move.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/pmd/scripts/move.js b/pmd/scripts/move.js
index f22d29fee9..6b6500155b 100644
--- a/pmd/scripts/move.js
+++ b/pmd/scripts/move.js
@@ -321,6 +321,7 @@ function Circle(x,y,r,w,color)
{
var ctx = document.getElementById('canvas').getContext('2d');
ctx.beginPath();
+ ctx.moveTo(x, y);
ctx.lineWidth = w;
ctx.strokeStyle = color;
ctx.arc(x, y, r, 0, 2*Math.PI, true);