diff --git a/examples/Rasters/SpiralRaster.html b/examples/Rasters/SpiralRaster.html index b67b0b45..9f9d8839 100644 --- a/examples/Rasters/SpiralRaster.html +++ b/examples/Rasters/SpiralRaster.html @@ -16,7 +16,7 @@ var text = new PointText(view.bounds.bottomRight - [30, 30]); text.justification = 'right'; - text.fontSize = 10; + text.fontSize = 12; text.content = window.FileReader ? 'drag & drop an image from your desktop to rasterize it' : 'to drag & drop images, please use Webkit, Firefox, Chrome or IE 10'; diff --git a/examples/Scripts/PathStructure.html b/examples/Scripts/PathStructure.html index 6783e4ae..038ac4f0 100644 --- a/examples/Scripts/PathStructure.html +++ b/examples/Scripts/PathStructure.html @@ -17,7 +17,7 @@ var text = new PointText(); text.content = i; text.justification = 'center'; - text.fontSize = 9; + text.fontSize = 12; segmentTexts.push(text); } @@ -25,7 +25,7 @@ var handleInText = new PointText(); handleInText.content = 'handleIn'; handleInText.justification = 'center'; - handleInText.fontSize = 9; + handleInText.fontSize = 12; handleTexts.push(handleInText); var handleOutText = handleInText.clone();