Modify ↓
Ticket #6009 (closed bug: invalid)
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: | ||
| Blocking: | Blocked by: |
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();
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.

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.