| Issue 390: | function addMinutes (around L3050) | |
| 1 person starred this issue and may be notified of changes. | Back to list |
There is an error when "destroying" a calendar and instantiating it again in the same DOM element. I think the problem is the operator "+" in the function "addMinutes" which concatenates "d.getMinutes()" and "n" instead of adding them. Change this line "d.setMinutes(d.getMinutes() + n);" by this one "d.setMinutes(parseInt(d.getMinutes()) + parseInt(n));"
Apr 8, 2010
Project Member
#1
adamrs...@gmail.com
Apr 26, 2010
please respond if you can give a runnable example
Status:
Done
|
|
| ► Sign in to add a comment |