With a single line modification, you can modify the fullcalendar.js script to allow line breaks and put multiple information on one line.
In FullCalendar.js, on line ~ 3922, find the htmlEscape (s) function and add .replace (/ <br \ s? /?> / G, '
') to end.
function htmlEscape(s) { return s.replace(/&/g, '&') .replace(/</g, '<') .replace(/>/g, '>') .replace(/'/g, ''') .replace(/"/g, '"') .replace(/\n/g, '<br />') .replace(/<br\s?\/?>/g, '<br />'); }
This will allow you to have multiple lines for the title, sharing information. Example, replace event.title with title: 'All Day Event' + '<br />' + 'Other description'
Jake1164 Aug 05 '10 at 13:36 2010-08-05 13:36
source share