update 3rd party lib fullcalendar to version 2.7.3

This commit is contained in:
Mario Vavti
2016-06-16 11:22:08 +02:00
parent d457f11717
commit 951bf5ec2e
9 changed files with 1534 additions and 579 deletions

View File

@@ -1,7 +1,7 @@
/*!
* FullCalendar v2.6.1 Google Calendar Plugin
* FullCalendar v2.7.3 Google Calendar Plugin
* Docs & License: http://fullcalendar.io/
* (c) 2015 Adam Shaw
* (c) 2016 Adam Shaw
*/
(function(factory) {
@@ -136,10 +136,10 @@ function transformOptions(sourceOptions, start, end, timezone, calendar) {
}
else if (data.items) {
$.each(data.items, function(i, entry) {
var url = entry.htmlLink;
var url = entry.htmlLink || null;
// make the URLs for each event show times in the correct timezone
if (timezoneArg) {
if (timezoneArg && url !== null) {
url = injectQsComponent(url, 'ctz=' + timezoneArg);
}