You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Build ical.js from source using grunt package-zones. The load of ical.timezones.js throws an exception that it is unable to parse the timezones. This is because the line below
Build ical.js from source using grunt package-zones. The load of ical.timezones.js throws an exception that it is unable to parse the timezones. This is because the line below
ICAL.TimezoneService.register(ICAL.Component.fromString("BEGIN:VTIMEZONE\r\n" + tzdata + "END:VTIMEZONE")) };
needs to be changed to
ICAL.TimezoneService.register(ICAL.Component.fromString("BEGIN:VTIMEZONE\r\n" + tzdata + "\r\nEND:VTIMEZONE")) };
The text was updated successfully, but these errors were encountered: