dhtmlx-scheduler 7.2.12 → 7.2.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  /** @license
2
2
 
3
- dhtmlxScheduler v.7.2.12 Standard
3
+ dhtmlxScheduler v.7.2.13 Standard
4
4
 
5
5
  To use dhtmlxScheduler in non-GPL projects (and get Pro version of the product), please obtain Commercial/Enterprise or Ultimate license on our site https://dhtmlx.com/docs/products/dhtmlxScheduler/#licensing or contact us at sales@dhtmlx.com
6
6
 
@@ -1363,13 +1363,13 @@ function createHandlers(scheduler2) {
1363
1363
  }
1364
1364
  }
1365
1365
  if (typeof eventData.start_date === "string") {
1366
- eventData.start_date = scheduler2.templates.parse_date(eventData.start_date);
1366
+ existingEvent.start_date = scheduler2.templates.parse_date(eventData.start_date);
1367
1367
  }
1368
1368
  if (typeof eventData.end_date === "string") {
1369
- eventData.end_date = scheduler2.templates.parse_date(eventData.end_date);
1369
+ existingEvent.end_date = scheduler2.templates.parse_date(eventData.end_date);
1370
1370
  }
1371
1371
  if (eventData.original_start && typeof eventData.original_start === "string") {
1372
- eventData.original_start = scheduler2.templates.parse_date(eventData.original_start);
1372
+ existingEvent.original_start = scheduler2.templates.parse_date(eventData.original_start);
1373
1373
  }
1374
1374
  scheduler2.callEvent("onEventChanged", [sid, existingEvent]);
1375
1375
  scheduler2.updateEvent(sid);
@@ -9267,7 +9267,7 @@ class DatePicker {
9267
9267
  }
9268
9268
  }
9269
9269
  function factoryMethod(extensionManager) {
9270
- const scheduler2 = { version: "7.2.12" };
9270
+ const scheduler2 = { version: "7.2.13" };
9271
9271
  scheduler2.$stateProvider = StateService();
9272
9272
  scheduler2.getState = scheduler2.$stateProvider.getState;
9273
9273
  extend$n(scheduler2);