Fullcalendar not showing axis times for 15 min slots

fullcalendar, jquery

Solution

I know it has been a long time but for anyone who has the same problem you can try using:

slotDuration: '00:15:00',
slotLabelInterval: 15,
slotLabelFormat: 'h(:mm)a',

in fullcalendar v2

Problem

I set my fullcalendar to have 15 minute slots, however it is not showing the minute breakouts. For example, it will show 9am, 10am, 11am, etc. but not 9am, 9:15am, 9:30am, etc. It shows the minute breakouts for other slots like 10 minutes, but I can't get it to work for 15. I've looked around and saw this post: How to show all text on the axis for each minute slots rather than just 6am, 7am etc but I can't find the function that user is referring to in his proposed resolution. Perhaps the script was updated since then. Does anyone know how I can get the minute breakouts to show?

Original source