From 23a0db603f072fd7a381b3d30a67639831e6849f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Mon, 20 Jun 2011 20:25:19 +0100 Subject: [PATCH] No need to set text fillColor to black anymore, as it's the default now. --- examples/Tools/Vektor.html | 2 -- 1 file changed, 2 deletions(-) diff --git a/examples/Tools/Vektor.html b/examples/Tools/Vektor.html index 662c9778..dac6cf2a 100644 --- a/examples/Tools/Vektor.html +++ b/examples/Tools/Vektor.html @@ -113,7 +113,6 @@ var text = new PointText(center + through.normalize(radius + 10) + new Point(0, 3)); text.content = Math.floor(vector.angle * 100) / 100 + '\xb0'; - text.fillColor = 'black'; items.push(text); } } @@ -151,7 +150,6 @@ text.justification = 'center'; value = value || vector.length; text.content = (prefix || '') + Math.floor(value * 1000) / 1000; - text.fillColor = 'black'; items.push(text); } }