lbell / pretty-google-calendar

Simple WordPress plugin to embed Google Calendars in way that doesn't suck.
12 stars 7 forks source link

Remove seconds from popup #17

Closed lbell closed 1 year ago

lbell commented 1 year ago

Change in tippy.js

  const timeString = info.event.allDay
    ? "All Day"
    : new Date(info.event.startStr).toLocaleTimeString([], {
        hour: "2-digit",
        minute: "2-digit",
      });