Skip to content

Instantly share code, notes, and snippets.

@mogarick
Last active May 14, 2024 10:16
Show Gist options
  • Save mogarick/9246085 to your computer and use it in GitHub Desktop.
Save mogarick/9246085 to your computer and use it in GitHub Desktop.
Getting UTC timestamps of iCal with Timezone using the mozilla-comm/ical.js lib
var vtimezones = comp.getAllSubcomponents("vtimezone");
_.each(vtimezones, function (vtimezone) {
//Si timezone está registrada
if (!(ICAL.TimezoneService.has(
vtimezone.getFirstPropertyValue("tzid")))) {
ICAL.TimezoneService.register(vtimezone);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment