Skip to content

Instantly share code, notes, and snippets.

@lorenzocaum
Created September 14, 2020 22:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lorenzocaum/5a9a56f831aa443b3cd7f8793eb2c938 to your computer and use it in GitHub Desktop.
Save lorenzocaum/5a9a56f831aa443b3cd7f8793eb2c938 to your computer and use it in GitHub Desktop.
                                     /**
                                         * Agenda Options
                                         * http://arshaw.com/fullcalendar/docs/agenda/
                                         * Note: These ptions that apply to the agendaWeek and agendaDay views, and have beft out intentionally.
                                         * Please refer to the URL above to add.manage your agenda views.
                                         **/
 
                                        /**
                                         * Text/Time Customization Settings
                                         * http://arshaw.com/fullcalendar/docs/text/
                                         **/
 
                                        //Determines the time-text that will be displayed on each event.
                                        timeFormat:{ //Settings: http://arshaw.com/fullcalendar/docs/text/timeFormat/
                                                // for agendaWeek and agendaDay
                                                agenda: 'h:mm{ - h:mm}', // 5:00 - 6:30
 
 

                                                // for all other views
                                                '': ''// 7p

                                        },
										
										minTime: '10:00am',
										maxTime: '6:00pm',
 
                                        //Changes the colors of the events as seen here:
                                        //http://code.google.com/p/fullcalendar/issues/detail?id=6&can=1&q=css&colspec=ID%20Type%20Status%20Milestone%20Summary%20Stars
                                        eventRender: function( event, element) {
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment