FullCalendar Feb 29th Agenda Bug

by cormip

HTML

<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/fullcalendar/3.4.0/fullcalendar.min.css">
<script src="//cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fullcalendar/3.4.0/fullcalendar.min.js"></script>
<div id='calendar'></div>

JavaScript

$(document).ready(function() {
		
		$('#calendar').fullCalendar({
			header: {
				left: '',
				center: 'title',
				right: ''
			},
			views: {
        eventAgenda: {
          type: 'list',
          duration: { days: 7 }
        }
      },
			defaultView: 'eventAgenda',
			defaultDate: '2018-02-26',
			navLinks: false, // can click day/week names to navigate views
			editable: false,
			eventLimit: false, // allow "more" link when too many events
			events: [
        {id: "725_0", start: "2018-02-26T08:00:00", end: "2018-02-26T18:30:00", title: "X015-Cable Splicing Module V Train-The-Trainer"},
        {id: "725_1", start: "2018-02-27T08:00:00", end: "2018-02-27T18:30:00", title: "X015-Cable Splicing Module V Train-The-Trainer"},
        {id: "725_2", start: "2018-02-28T08:00:00", end: "2018-02-28T18:30:00", title: "X015-Cable Splicing Module V Train-The-Trainer"},
        {id: "725_3", start: "2018-03-01T08:00:00", end: "2018-03-01T18:30:00", title: "X015-Cable Splicing Module V Train-The-Trainer"},
        {id: "725_4", start: "2018-03-02T08:00:00", end: "2018-03-02T18:30:00", title: "X015-Cable Splicing Module V Train-The-Trainer"},
        {id: "725_5", start: "2018-03-03T08:00:00", end: "2018-03-03T18:30:00", title: "X015-Cable Splicing Module V Train-The-Trainer"},
        {id: "725_6", start: "2018-03-04T08:00:00", end: "2018-03-04T18:30:00", title: "X015-Cable Splicing Module V Train-The-Trainer"}
			]
		});
	});