I'm using fullcalendar to display events, event titles are concatenated on the calendar and only show on one line, how can I display the full event title?
this is my bookings.js.coffee file which renders the calendar
$(document).on 'ready page:load', ->
$('#calendar').fullCalendar
editable: false,
header:
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,agendaDay'
defaultView: 'month',
height: 500,
slotMinutes: 30,
eventSources: [{
url: '/bookings',
}],
timeFormat: 'h:mm t{ - h:mm t} '