fullCalendar - 禁用多选日

fullCalendar - Disable Multiselect Day

我想在 fullCalendar.Can 中禁用多选日,只选择一天。我在这里和 fullCalendar 网站上进行了搜索,但没有找到我想要的东西。

演示:http://jsfiddle.net/opqdqLa0/

var calendar = $('#calendar').fullCalendar({
  editable: true,
    selectable: true,
  //header and other values
  select: function(start, end, allDay) {
      if(end.getTime() != start.getTime()){
          calendar.fullCalendar( 'unselect' ) ;
      }
   }
});