Issue 390: function addMinutes (around L3050)
Status:  Done
Owner: ----
Closed:  Apr 2010
Reported by remix...@hotmail.com, Mar 12, 2010
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));"
captura.gif
25.8 KB   View   Download
Apr 8, 2010
Project Member #1 adamrs...@gmail.com
could you post a runnable html file? it is hard to say what the cause of the problem 
is merely by looking at the error message, will need some deeper debugging. probably 
related to a bad option that you are giving fullcalendar
Apr 26, 2010
Project Member #2 adamrs...@gmail.com
please respond if you can give a runnable example
Status: Done