Side navigation
#6009 closed bug (invalid)
Opened February 02, 2010 10:11AM UTC
Closed February 02, 2010 01:34PM UTC
Last modified November 28, 2011 08:07PM UTC
An invalid or illegal string was specified" code: "12
Reported by: | htrex | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.4.2 |
Component: | unfiled | Version: | 1.4.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
i'm tring to upgrade a jquery application from 1.3.2 to 1.4.1
changing only the jquery include statement to the latest version i'm receiving the message in the subject.
this seems to happen on moveTo and LineTo function calls of this piece of code:
ctx = $('#EmendLinks').get(0).getContext('2d');
ctx.beginPath();
ctx.moveTo(xstart,ystart);
ctx.lineTo(xstart,ybaseline);
ctx.lineTo(xend-25,ybaseline);
ctx.lineTo(xend-4,yend);
ctx.lineTo(xend,yend);
ctx.stroke();
Without seeing the rest of the source it's really hard to determine what might be going wrong. Since you're doing some canvas drawing (not jQuery) there I can only assume that at least one of your variables has some incorrect input in it.