JSGantt Version: v12
Browser: all
OS: all
What steps will reproduce the problem?
1. In jsgantt.js
Line 1467:
vDate.setFullYear(parseInt(vDateParts[0], 10),
parseInt(vDateParts[1], 10) - 1, parseInt(vDateParts[1], 10));
Should be:
vDate.setFullYear(parseInt(vDateParts[0], 10),
parseInt(vDateParts[1], 10) - 1, parseInt(vDateParts[2], 10));
Note the array accessor in the last vDateParts!
Original issue reported on code.google.com by JeffreyD...@gmail.com on 8 Dec 2009 at 9:42
Original issue reported on code.google.com by
JeffreyD...@gmail.com
on 8 Dec 2009 at 9:42