mirror of
https://github.com/wassname/fullcalendar.git
synced 2026-08-11 11:18:47 +08:00
change behavior when updateEvent called when new dates cant be computed in tz
This commit is contained in:
+4
-4
@@ -617,11 +617,11 @@ function EventManager(options) { // assumed to be a calendar
|
||||
// if the dates have changed, and we know it is impossible to recompute the
|
||||
// timezone offsets, strip the zone.
|
||||
if (isAmbigTimezone) {
|
||||
if (+dateDelta) {
|
||||
if (+dateDelta || +durationDelta) {
|
||||
newStart.stripZone();
|
||||
}
|
||||
if (newEnd && (+dateDelta || +durationDelta)) {
|
||||
newEnd.stripZone();
|
||||
if (newEnd) {
|
||||
newEnd.stripZone();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user