Antoine
Antoine
I had the same issue. I added another function: ``` //Add one day var addOneDay = function (dateInfo) { var date = getDateFormatted(dateInfo); date.setTime(date.getTime() + 86400000); return getDateInfo(date); }; ```...
Hey @19kestier, if you're using the latest version that's up (from 3 months ago), the moreDaysEvent starts at line 135. I added the addOneDay function above the existing subtractOneDay function...
Sorry for the delay! This fix still works for me.