Issue 836: SlotMinutes of 5 doesn't work properly with selecting.
Status:  Done
Owner: ----
Closed:  May 2011
Reported by mber...@gmail.com, Feb 16, 2011
Code:

//***************************************************************************************************************
	//  Order Calendar
	//***************************************************************************************************************
	$calendarPanel = $("#calendar-panel");
	$orderCalendar = $("#order-calendar");
	if($orderCalendar.exists()) {
		$orderCalendar.fullCalendar({
			theme : true,
			weekMode : 'liquid',
			aspectRatio : 0.9,
			header : {
				left:   'title ',
				center: 'today ',
				right:  'month,agendaWeek,agendaDay prev,next'
			},
			selectable: true,
			selectHelper: true,
			slotMinutes: 5,
			defaultEventMinutes: 5,
			/* Events */
			// Clicked on day
			dayClick: function(date, allDay, jsEvent, view) {
	
					if (allDay) {
							alert('Clicked on the entire day: ' + date);
					} else{
							alert('Clicked on the slot: ' + date);
					}
			
			},
			// Selected a Time
			select: function( startDate, endDate, allDay, jsEvent, view ) {
				alert(startDate);
			}
			
		});
		
		/* Show Calendar on Tab Open */
		$calendarPanel.bind("panelShown", function() {
			$orderCalendar.fullCalendar('render');
		});
	}

When I click and drag, it starts creating the event at whatever the 30 minute increment is in that hour not at the 5 minute slot I originally began with.
Mar 24, 2011
Project Member #1 adamrs...@gmail.com
would you be able to include a runnable html file?
it would be nice to just run the html file in a browser and be able to produce the problem.
this might require widdling down your code to make it a minimal example.
thanks
Status: Reproducing
May 8, 2011
Project Member #2 adamrs...@gmail.com
(No comment was entered for this change.)
Status: Done