These docs are for an old release. Info on upgrading to version 2/3
edit doc

eventSources 1.2

A way to specify multiple event sources.

Array

This option is used instead of the events option.

You can put any number of event arrays, functions, JSON feed URLs, or full-out Event Source Objects into the eventSources array.

Here is an example calendar that displays two JSON feeds:

$('#calendar').fullCalendar({
  eventSources: [
    '/feed1.php',
    '/feed2.php'
  ]
});