Skip to content

Commit

Permalink
update fullcalendar to 3.10 version
Browse files Browse the repository at this point in the history
  • Loading branch information
orthagh committed Jan 12, 2017
1 parent 09ccfaf commit 2868ceb
Show file tree
Hide file tree
Showing 53 changed files with 2,151 additions and 1,379 deletions.
36 changes: 18 additions & 18 deletions lib/jqueryplugins/fullcalendar/demos/agenda-views.html
Expand Up @@ -2,8 +2,8 @@
<html>
<head>
<meta charset='utf-8' />
<link href='../fullcalendar.css' rel='stylesheet' />
<link href='../fullcalendar.print.css' rel='stylesheet' media='print' />
<link href='../fullcalendar.min.css' rel='stylesheet' />
<link href='../fullcalendar.print.min.css' rel='stylesheet' media='print' />
<script src='../lib/moment.min.js'></script>
<script src='../lib/jquery.min.js'></script>
<script src='../fullcalendar.min.js'></script>
Expand All @@ -17,64 +17,64 @@
center: 'title',
right: 'month,agendaWeek,agendaDay,listWeek'
},
defaultDate: '2016-09-12',
defaultDate: '2016-12-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: '2016-09-01'
start: '2016-12-01'
},
{
title: 'Long Event',
start: '2016-09-07',
end: '2016-09-10'
start: '2016-12-07',
end: '2016-12-10'
},
{
id: 999,
title: 'Repeating Event',
start: '2016-09-09T16:00:00'
start: '2016-12-09T16:00:00'
},
{
id: 999,
title: 'Repeating Event',
start: '2016-09-16T16:00:00'
start: '2016-12-16T16:00:00'
},
{
title: 'Conference',
start: '2016-09-11',
end: '2016-09-13'
start: '2016-12-11',
end: '2016-12-13'
},
{
title: 'Meeting',
start: '2016-09-12T10:30:00',
end: '2016-09-12T12:30:00'
start: '2016-12-12T10:30:00',
end: '2016-12-12T12:30:00'
},
{
title: 'Lunch',
start: '2016-09-12T12:00:00'
start: '2016-12-12T12:00:00'
},
{
title: 'Meeting',
start: '2016-09-12T14:30:00'
start: '2016-12-12T14:30:00'
},
{
title: 'Happy Hour',
start: '2016-09-12T17:30:00'
start: '2016-12-12T17:30:00'
},
{
title: 'Dinner',
start: '2016-09-12T20:00:00'
start: '2016-12-12T20:00:00'
},
{
title: 'Birthday Party',
start: '2016-09-13T07:00:00'
start: '2016-12-13T07:00:00'
},
{
title: 'Click for Google',
url: 'http://google.com/',
start: '2016-09-28'
start: '2016-12-28'
}
]
});
Expand Down
32 changes: 16 additions & 16 deletions lib/jqueryplugins/fullcalendar/demos/background-events.html
Expand Up @@ -2,8 +2,8 @@
<html>
<head>
<meta charset='utf-8' />
<link href='../fullcalendar.css' rel='stylesheet' />
<link href='../fullcalendar.print.css' rel='stylesheet' media='print' />
<link href='../fullcalendar.min.css' rel='stylesheet' />
<link href='../fullcalendar.print.min.css' rel='stylesheet' media='print' />
<script src='../lib/moment.min.js'></script>
<script src='../lib/jquery.min.js'></script>
<script src='../fullcalendar.min.js'></script>
Expand All @@ -17,57 +17,57 @@
center: 'title',
right: 'month,agendaWeek,agendaDay,listMonth'
},
defaultDate: '2016-09-12',
defaultDate: '2016-12-12',
navLinks: true, // can click day/week names to navigate views
businessHours: true, // display business hours
editable: true,
events: [
{
title: 'Business Lunch',
start: '2016-09-03T13:00:00',
start: '2016-12-03T13:00:00',
constraint: 'businessHours'
},
{
title: 'Meeting',
start: '2016-09-13T11:00:00',
start: '2016-12-13T11:00:00',
constraint: 'availableForMeeting', // defined below
color: '#257e4a'
},
{
title: 'Conference',
start: '2016-09-18',
end: '2016-09-20'
start: '2016-12-18',
end: '2016-12-20'
},
{
title: 'Party',
start: '2016-09-29T20:00:00'
start: '2016-12-29T20:00:00'
},

// areas where "Meeting" must be dropped
{
id: 'availableForMeeting',
start: '2016-09-11T10:00:00',
end: '2016-09-11T16:00:00',
start: '2016-12-11T10:00:00',
end: '2016-12-11T16:00:00',
rendering: 'background'
},
{
id: 'availableForMeeting',
start: '2016-09-13T10:00:00',
end: '2016-09-13T16:00:00',
start: '2016-12-13T10:00:00',
end: '2016-12-13T16:00:00',
rendering: 'background'
},

// red areas where no events can be dropped
{
start: '2016-09-24',
end: '2016-09-28',
start: '2016-12-24',
end: '2016-12-28',
overlap: false,
rendering: 'background',
color: '#ff9f89'
},
{
start: '2016-09-06',
end: '2016-09-08',
start: '2016-12-06',
end: '2016-12-08',
overlap: false,
rendering: 'background',
color: '#ff9f89'
Expand Down
36 changes: 18 additions & 18 deletions lib/jqueryplugins/fullcalendar/demos/basic-views.html
Expand Up @@ -2,8 +2,8 @@
<html>
<head>
<meta charset='utf-8' />
<link href='../fullcalendar.css' rel='stylesheet' />
<link href='../fullcalendar.print.css' rel='stylesheet' media='print' />
<link href='../fullcalendar.min.css' rel='stylesheet' />
<link href='../fullcalendar.print.min.css' rel='stylesheet' media='print' />
<script src='../lib/moment.min.js'></script>
<script src='../lib/jquery.min.js'></script>
<script src='../fullcalendar.min.js'></script>
Expand All @@ -17,64 +17,64 @@
center: 'title',
right: 'month,basicWeek,basicDay'
},
defaultDate: '2016-09-12',
defaultDate: '2016-12-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: '2016-09-01'
start: '2016-12-01'
},
{
title: 'Long Event',
start: '2016-09-07',
end: '2016-09-10'
start: '2016-12-07',
end: '2016-12-10'
},
{
id: 999,
title: 'Repeating Event',
start: '2016-09-09T16:00:00'
start: '2016-12-09T16:00:00'
},
{
id: 999,
title: 'Repeating Event',
start: '2016-09-16T16:00:00'
start: '2016-12-16T16:00:00'
},
{
title: 'Conference',
start: '2016-09-11',
end: '2016-09-13'
start: '2016-12-11',
end: '2016-12-13'
},
{
title: 'Meeting',
start: '2016-09-12T10:30:00',
end: '2016-09-12T12:30:00'
start: '2016-12-12T10:30:00',
end: '2016-12-12T12:30:00'
},
{
title: 'Lunch',
start: '2016-09-12T12:00:00'
start: '2016-12-12T12:00:00'
},
{
title: 'Meeting',
start: '2016-09-12T14:30:00'
start: '2016-12-12T14:30:00'
},
{
title: 'Happy Hour',
start: '2016-09-12T17:30:00'
start: '2016-12-12T17:30:00'
},
{
title: 'Dinner',
start: '2016-09-12T20:00:00'
start: '2016-12-12T20:00:00'
},
{
title: 'Birthday Party',
start: '2016-09-13T07:00:00'
start: '2016-12-13T07:00:00'
},
{
title: 'Click for Google',
url: 'http://google.com/',
start: '2016-09-28'
start: '2016-12-28'
}
]
});
Expand Down
36 changes: 18 additions & 18 deletions lib/jqueryplugins/fullcalendar/demos/default.html
Expand Up @@ -2,8 +2,8 @@
<html>
<head>
<meta charset='utf-8' />
<link href='../fullcalendar.css' rel='stylesheet' />
<link href='../fullcalendar.print.css' rel='stylesheet' media='print' />
<link href='../fullcalendar.min.css' rel='stylesheet' />
<link href='../fullcalendar.print.min.css' rel='stylesheet' media='print' />
<script src='../lib/moment.min.js'></script>
<script src='../lib/jquery.min.js'></script>
<script src='../fullcalendar.min.js'></script>
Expand All @@ -12,63 +12,63 @@
$(document).ready(function() {

$('#calendar').fullCalendar({
defaultDate: '2016-09-12',
defaultDate: '2016-12-12',
editable: true,
eventLimit: true, // allow "more" link when too many events
events: [
{
title: 'All Day Event',
start: '2016-09-01'
start: '2016-12-01'
},
{
title: 'Long Event',
start: '2016-09-07',
end: '2016-09-10'
start: '2016-12-07',
end: '2016-12-10'
},
{
id: 999,
title: 'Repeating Event',
start: '2016-09-09T16:00:00'
start: '2016-12-09T16:00:00'
},
{
id: 999,
title: 'Repeating Event',
start: '2016-09-16T16:00:00'
start: '2016-12-16T16:00:00'
},
{
title: 'Conference',
start: '2016-09-11',
end: '2016-09-13'
start: '2016-12-11',
end: '2016-12-13'
},
{
title: 'Meeting',
start: '2016-09-12T10:30:00',
end: '2016-09-12T12:30:00'
start: '2016-12-12T10:30:00',
end: '2016-12-12T12:30:00'
},
{
title: 'Lunch',
start: '2016-09-12T12:00:00'
start: '2016-12-12T12:00:00'
},
{
title: 'Meeting',
start: '2016-09-12T14:30:00'
start: '2016-12-12T14:30:00'
},
{
title: 'Happy Hour',
start: '2016-09-12T17:30:00'
start: '2016-12-12T17:30:00'
},
{
title: 'Dinner',
start: '2016-09-12T20:00:00'
start: '2016-12-12T20:00:00'
},
{
title: 'Birthday Party',
start: '2016-09-13T07:00:00'
start: '2016-12-13T07:00:00'
},
{
title: 'Click for Google',
url: 'http://google.com/',
start: '2016-09-28'
start: '2016-12-28'
}
]
});
Expand Down
4 changes: 2 additions & 2 deletions lib/jqueryplugins/fullcalendar/demos/external-dragging.html
Expand Up @@ -2,8 +2,8 @@
<html>
<head>
<meta charset='utf-8' />
<link href='../fullcalendar.css' rel='stylesheet' />
<link href='../fullcalendar.print.css' rel='stylesheet' media='print' />
<link href='../fullcalendar.min.css' rel='stylesheet' />
<link href='../fullcalendar.print.min.css' rel='stylesheet' media='print' />
<script src='../lib/moment.min.js'></script>
<script src='../lib/jquery.min.js'></script>
<script src='../lib/jquery-ui.min.js'></script>
Expand Down
6 changes: 3 additions & 3 deletions lib/jqueryplugins/fullcalendar/demos/gcal.html
Expand Up @@ -2,12 +2,12 @@
<html>
<head>
<meta charset='utf-8' />
<link href='../fullcalendar.css' rel='stylesheet' />
<link href='../fullcalendar.print.css' rel='stylesheet' media='print' />
<link href='../fullcalendar.min.css' rel='stylesheet' />
<link href='../fullcalendar.print.min.css' rel='stylesheet' media='print' />
<script src='../lib/moment.min.js'></script>
<script src='../lib/jquery.min.js'></script>
<script src='../fullcalendar.min.js'></script>
<script src='../gcal.js'></script>
<script src='../gcal.min.js'></script>
<script>

$(document).ready(function() {
Expand Down

0 comments on commit 2868ceb

Please sign in to comment.