Skip to content

Commit

Permalink
updated example dates
Browse files Browse the repository at this point in the history
  • Loading branch information
arshaw committed May 28, 2020
1 parent 3750b30 commit df63882
Show file tree
Hide file tree
Showing 35 changed files with 319 additions and 319 deletions.
34 changes: 17 additions & 17 deletions examples/_jquery-connector.html
Original file line number Diff line number Diff line change
Expand Up @@ -88,64 +88,64 @@
center: 'title',
right: 'dayGridMonth,timeGridWeek,timeGridDay,listWeek'
},
defaultDate: '2020-02-12',
defaultDate: '2020-05-12',
navLinks: true, // can click day/week names to navigate views
editable: true,
eventLimit: true, // allow "more" link when too many events
events: [
{
title: 'All Day Event',
start: '2020-02-01',
start: '2020-05-01',
},
{
title: 'Long Event',
start: '2020-02-07',
end: '2020-02-10'
start: '2020-05-07',
end: '2020-05-10'
},
{
groupId: 999,
title: 'Repeating Event',
start: '2020-02-09T16:00:00'
start: '2020-05-09T16:00:00'
},
{
groupId: 999,
title: 'Repeating Event',
start: '2020-02-16T16:00:00'
start: '2020-05-16T16:00:00'
},
{
title: 'Conference',
start: '2020-02-11',
end: '2020-02-13'
start: '2020-05-11',
end: '2020-05-13'
},
{
title: 'Meeting',
start: '2020-02-12T10:30:00',
end: '2020-02-12T12:30:00'
start: '2020-05-12T10:30:00',
end: '2020-05-12T12:30:00'
},
{
title: 'Lunch',
start: '2020-02-12T12:00:00'
start: '2020-05-12T12:00:00'
},
{
title: 'Meeting',
start: '2020-02-12T14:30:00'
start: '2020-05-12T14:30:00'
},
{
title: 'Happy Hour',
start: '2020-02-12T17:30:00'
start: '2020-05-12T17:30:00'
},
{
title: 'Dinner',
start: '2020-02-12T20:00:00'
start: '2020-05-12T20:00:00'
},
{
title: 'Birthday Party',
start: '2020-02-13T07:00:00'
start: '2020-05-13T07:00:00'
},
{
title: 'Click for Google',
url: 'http://google.com/',
start: '2020-02-28'
start: '2020-05-28'
}
]
})
Expand All @@ -159,7 +159,7 @@
})

$('#gotoDate-button').on('click', function() {
$calendar.fullCalendar('gotoDate', '2020-02-01')
$calendar.fullCalendar('gotoDate', '2020-05-01')
})
})

Expand Down
32 changes: 16 additions & 16 deletions examples/_locale-es.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
center: 'title',
right: 'dayGridMonth,timeGridWeek,timeGridDay,listMonth'
},
defaultDate: '2020-02-12',
defaultDate: '2020-05-12',
locale: 'es',
buttonIcons: false, // show the prev/next text
weekNumbers: true,
Expand All @@ -34,57 +34,57 @@
events: [
{
title: 'All Day Event',
start: '2020-02-01'
start: '2020-05-01'
},
{
title: 'Long Event',
start: '2020-02-07',
end: '2020-02-10'
start: '2020-05-07',
end: '2020-05-10'
},
{
groupId: 999,
title: 'Repeating Event',
start: '2020-02-09T16:00:00'
start: '2020-05-09T16:00:00'
},
{
groupId: 999,
title: 'Repeating Event',
start: '2020-02-16T16:00:00'
start: '2020-05-16T16:00:00'
},
{
title: 'Conference',
start: '2020-02-11',
end: '2020-02-13'
start: '2020-05-11',
end: '2020-05-13'
},
{
title: 'Meeting',
start: '2020-02-12T10:30:00',
end: '2020-02-12T12:30:00'
start: '2020-05-12T10:30:00',
end: '2020-05-12T12:30:00'
},
{
title: 'Lunch',
start: '2020-02-12T12:00:00'
start: '2020-05-12T12:00:00'
},
{
title: 'Meeting',
start: '2020-02-12T14:30:00'
start: '2020-05-12T14:30:00'
},
{
title: 'Happy Hour',
start: '2020-02-12T17:30:00'
start: '2020-05-12T17:30:00'
},
{
title: 'Dinner',
start: '2020-02-12T20:00:00'
start: '2020-05-12T20:00:00'
},
{
title: 'Birthday Party',
start: '2020-02-13T07:00:00'
start: '2020-05-13T07:00:00'
},
{
title: 'Click for Google',
url: 'http://google.com/',
start: '2020-02-28'
start: '2020-05-28'
}
]
});
Expand Down
28 changes: 14 additions & 14 deletions examples/background-events.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,57 +23,57 @@
center: 'title',
right: 'dayGridMonth,timeGridWeek,timeGridDay,listMonth'
},
defaultDate: '2020-02-12',
defaultDate: '2020-05-12',
navLinks: true, // can click day/week names to navigate views
businessHours: true, // display business hours
editable: true,
events: [
{
title: 'Business Lunch',
start: '2020-02-03T13:00:00',
start: '2020-05-03T13:00:00',
constraint: 'businessHours'
},
{
title: 'Meeting',
start: '2020-02-13T11:00:00',
start: '2020-05-13T11:00:00',
constraint: 'availableForMeeting', // defined below
color: '#257e4a'
},
{
title: 'Conference',
start: '2020-02-18',
end: '2020-02-20'
start: '2020-05-18',
end: '2020-05-20'
},
{
title: 'Party',
start: '2020-02-29T20:00:00'
start: '2020-05-29T20:00:00'
},

// areas where "Meeting" must be dropped
{
groupId: 'availableForMeeting',
start: '2020-02-11T10:00:00',
end: '2020-02-11T16:00:00',
start: '2020-05-11T10:00:00',
end: '2020-05-11T16:00:00',
rendering: 'background'
},
{
groupId: 'availableForMeeting',
start: '2020-02-13T10:00:00',
end: '2020-02-13T16:00:00',
start: '2020-05-13T10:00:00',
end: '2020-05-13T16:00:00',
rendering: 'background'
},

// red areas where no events can be dropped
{
start: '2020-02-24',
end: '2020-02-28',
start: '2020-05-24',
end: '2020-05-28',
overlap: false,
rendering: 'background',
color: '#ff9f89'
},
{
start: '2020-02-06',
end: '2020-02-08',
start: '2020-05-06',
end: '2020-05-08',
overlap: false,
rendering: 'background',
color: '#ff9f89'
Expand Down
32 changes: 16 additions & 16 deletions examples/daygrid-views.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,64 +19,64 @@
center: 'title',
right: 'dayGridMonth,dayGridWeek,dayGridDay'
},
defaultDate: '2020-02-12',
defaultDate: '2020-05-12',
navLinks: true, // can click day/week names to navigate views
editable: true,
eventLimit: true, // allow "more" link when too many events
events: [
{
title: 'All Day Event',
start: '2020-02-01'
start: '2020-05-01'
},
{
title: 'Long Event',
start: '2020-02-07',
end: '2020-02-10'
start: '2020-05-07',
end: '2020-05-10'
},
{
groupId: 999,
title: 'Repeating Event',
start: '2020-02-09T16:00:00'
start: '2020-05-09T16:00:00'
},
{
groupId: 999,
title: 'Repeating Event',
start: '2020-02-16T16:00:00'
start: '2020-05-16T16:00:00'
},
{
title: 'Conference',
start: '2020-02-11',
end: '2020-02-13'
start: '2020-05-11',
end: '2020-05-13'
},
{
title: 'Meeting',
start: '2020-02-12T10:30:00',
end: '2020-02-12T12:30:00'
start: '2020-05-12T10:30:00',
end: '2020-05-12T12:30:00'
},
{
title: 'Lunch',
start: '2020-02-12T12:00:00'
start: '2020-05-12T12:00:00'
},
{
title: 'Meeting',
start: '2020-02-12T14:30:00'
start: '2020-05-12T14:30:00'
},
{
title: 'Happy Hour',
start: '2020-02-12T17:30:00'
start: '2020-05-12T17:30:00'
},
{
title: 'Dinner',
start: '2020-02-12T20:00:00'
start: '2020-05-12T20:00:00'
},
{
title: 'Birthday Party',
start: '2020-02-13T07:00:00'
start: '2020-05-13T07:00:00'
},
{
title: 'Click for Google',
url: 'http://google.com/',
start: '2020-02-28'
start: '2020-05-28'
}
]
});
Expand Down
12 changes: 6 additions & 6 deletions examples/external-dragging-2cals.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@
var srcCalendar = new FullCalendar.Calendar(srcCalendarEl, {
plugins: [ 'interaction', 'dayGrid' ],
editable: true,
defaultDate: '2020-02-12',
defaultDate: '2020-05-12',
events: [
{
title: 'event1',
start: '2020-02-11T10:00:00',
end: '2020-02-11T16:00:00'
start: '2020-05-11T10:00:00',
end: '2020-05-11T16:00:00'
},
{
title: 'event2',
start: '2020-02-13T10:00:00',
end: '2020-02-13T16:00:00'
start: '2020-05-13T10:00:00',
end: '2020-05-13T16:00:00'
}
],
eventLeave: function(info) {
Expand All @@ -36,7 +36,7 @@

var destCalendar = new FullCalendar.Calendar(destCalendarEl, {
plugins: [ 'interaction', 'dayGrid' ],
defaultDate: '2020-02-12',
defaultDate: '2020-05-12',
editable: true,
droppable: true, // will let it receive events!
eventReceive: function(info) {
Expand Down

0 comments on commit df63882

Please sign in to comment.