galaxy001 / canvas-text

Automatically exported from code.google.com/p/canvas-text
MIT License
0 stars 0 forks source link

Unable to print numbers #8

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
ctx.strokeText(70, x, y)

What is the expected output? What do you see instead?
i see "70" on my canvas (like in chrome, and safari on desktop without 
using canvas-text)

What version of the product are you using? On what operating system?
download on download page on code.google.com

Please provide any additional information below.
Solved:
(aproximatoly line 252)
In: "proto.renderText = function(text, style){
Change: chars = text.split(''),
To: chars = text.toString().split(''),

Original issue reported on code.google.com by Bastiaan...@gmail.com on 4 May 2010 at 12:50

GoogleCodeExporter commented 9 years ago
Thank you, I'm going to fix it ASAP.

Original comment by fabien.menager on 5 May 2010 at 3:12

GoogleCodeExporter commented 9 years ago

Original comment by fabien.menager on 28 Jul 2010 at 3:38