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.
@@ -3,7 +3,7 @@
3
3
  })(this, function(exports2) {
4
4
  "use strict";/** @license
5
5
 
6
- dhtmlxScheduler v.7.2.12 Standard
6
+ dhtmlxScheduler v.7.2.13 Standard
7
7
 
8
8
  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
9
9
 
@@ -1367,13 +1367,13 @@ To use dhtmlxScheduler in non-GPL projects (and get Pro version of the product),
1367
1367
  }
1368
1368
  }
1369
1369
  if (typeof eventData.start_date === "string") {
1370
- eventData.start_date = scheduler2.templates.parse_date(eventData.start_date);
1370
+ existingEvent.start_date = scheduler2.templates.parse_date(eventData.start_date);
1371
1371
  }
1372
1372
  if (typeof eventData.end_date === "string") {
1373
- eventData.end_date = scheduler2.templates.parse_date(eventData.end_date);
1373
+ existingEvent.end_date = scheduler2.templates.parse_date(eventData.end_date);
1374
1374
  }
1375
1375
  if (eventData.original_start && typeof eventData.original_start === "string") {
1376
- eventData.original_start = scheduler2.templates.parse_date(eventData.original_start);
1376
+ existingEvent.original_start = scheduler2.templates.parse_date(eventData.original_start);
1377
1377
  }
1378
1378
  scheduler2.callEvent("onEventChanged", [sid, existingEvent]);
1379
1379
  scheduler2.updateEvent(sid);
@@ -9271,7 +9271,7 @@ To use dhtmlxScheduler in non-GPL projects (and get Pro version of the product),
9271
9271
  }
9272
9272
  }
9273
9273
  function factoryMethod(extensionManager) {
9274
- const scheduler2 = { version: "7.2.12" };
9274
+ const scheduler2 = { version: "7.2.13" };
9275
9275
  scheduler2.$stateProvider = StateService();
9276
9276
  scheduler2.getState = scheduler2.$stateProvider.getState;
9277
9277
  extend$n(scheduler2);