Skip to content

Commit f912a8f

Browse files
committed
[update] version 7.2.13
1 parent f6f0da6 commit f912a8f

13 files changed

Lines changed: 30 additions & 25 deletions

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# dhtmlxScheduler #
22

33
[![dhtmlx.com](https://img.shields.io/badge/made%20by-DHTMLX-blue)](https://dhtmlx.com/)
4-
[![npm: v.7.2.12](https://img.shields.io/badge/npm-v.7.2.12-blue.svg)](https://www.npmjs.com/package/dhtmlx-scheduler)
4+
[![npm: v.7.2.13](https://img.shields.io/badge/npm-v.7.2.13-blue.svg)](https://www.npmjs.com/package/dhtmlx-scheduler)
55
[![License: GPL v2](https://img.shields.io/badge/license-GPL%20v2-blue.svg)](https://www.gnu.org/licenses/old-licenses/gpl-2.0.html)
66

77
[DHTMLX Scheduler](https://dhtmlx.com/docs/products/dhtmlxScheduler) is a JavaScript library that allows you to add a Google-like scheduler to your web app or website.
@@ -87,7 +87,7 @@ scheduler.parse([
8787

8888
## License ##
8989

90-
dhtmlxScheduler v.7.2.12 Standard
90+
dhtmlxScheduler v.7.2.13 Standard
9191

9292
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
9393

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "scheduler",
3-
"version": "7.2.12",
3+
"version": "7.2.13",
44
"homepage": "https://dhtmlx.com/docs/products/dhtmlxScheduler/",
55
"description": "JavaScript event calendar. Allows to manage events and appointments in different views",
66
"main": [

codebase/dhtmlxscheduler.es.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/** @license
22

3-
dhtmlxScheduler v.7.2.12 Standard
3+
dhtmlxScheduler v.7.2.13 Standard
44

55
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
66

@@ -735,7 +735,7 @@ function Ot(e) {
735735
t(() => {
736736
for (let r in a)
737737
r !== "start_date" && r !== "end_date" && (_[r] = a[r]);
738-
typeof a.start_date == "string" && (a.start_date = e.templates.parse_date(a.start_date)), typeof a.end_date == "string" && (a.end_date = e.templates.parse_date(a.end_date)), a.original_start && typeof a.original_start == "string" && (a.original_start = e.templates.parse_date(a.original_start)), e.callEvent("onEventChanged", [o, _]), e.updateEvent(o), o !== a.id && e.changeEventId(o, a.id);
738+
typeof a.start_date == "string" && (_.start_date = e.templates.parse_date(a.start_date)), typeof a.end_date == "string" && (_.end_date = e.templates.parse_date(a.end_date)), a.original_start && typeof a.original_start == "string" && (_.original_start = e.templates.parse_date(a.original_start)), e.callEvent("onEventChanged", [o, _]), e.updateEvent(o), o !== a.id && e.changeEventId(o, a.id);
739739
});
740740
})(s);
741741
break;
@@ -3084,7 +3084,7 @@ class Qt {
30843084
}
30853085
}
30863086
function ea(e) {
3087-
const i = { version: "7.2.12" };
3087+
const i = { version: "7.2.13" };
30883088
i.$stateProvider = function() {
30893089
const r = {};
30903090
return { getState: function(d) {

codebase/dhtmlxscheduler.es.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

codebase/dhtmlxscheduler.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

codebase/dhtmlxscheduler.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

codebase/sources/dhtmlxscheduler.es.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/** @license
22

3-
dhtmlxScheduler v.7.2.12 Standard
3+
dhtmlxScheduler v.7.2.13 Standard
44

55
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
66

@@ -1363,13 +1363,13 @@ function createHandlers(scheduler2) {
13631363
}
13641364
}
13651365
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);
13671367
}
13681368
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);
13701370
}
13711371
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);
13731373
}
13741374
scheduler2.callEvent("onEventChanged", [sid, existingEvent]);
13751375
scheduler2.updateEvent(sid);
@@ -9267,7 +9267,7 @@ class DatePicker {
92679267
}
92689268
}
92699269
function factoryMethod(extensionManager) {
9270-
const scheduler2 = { version: "7.2.12" };
9270+
const scheduler2 = { version: "7.2.13" };
92719271
scheduler2.$stateProvider = StateService();
92729272
scheduler2.getState = scheduler2.$stateProvider.getState;
92739273
extend$n(scheduler2);

codebase/sources/dhtmlxscheduler.es.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

codebase/sources/dhtmlxscheduler.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
})(this, function(exports2) {
44
"use strict";/** @license
55

6-
dhtmlxScheduler v.7.2.12 Standard
6+
dhtmlxScheduler v.7.2.13 Standard
77

88
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
99

@@ -1367,13 +1367,13 @@ To use dhtmlxScheduler in non-GPL projects (and get Pro version of the product),
13671367
}
13681368
}
13691369
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);
13711371
}
13721372
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);
13741374
}
13751375
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);
13771377
}
13781378
scheduler2.callEvent("onEventChanged", [sid, existingEvent]);
13791379
scheduler2.updateEvent(sid);
@@ -9271,7 +9271,7 @@ To use dhtmlxScheduler in non-GPL projects (and get Pro version of the product),
92719271
}
92729272
}
92739273
function factoryMethod(extensionManager) {
9274-
const scheduler2 = { version: "7.2.12" };
9274+
const scheduler2 = { version: "7.2.13" };
92759275
scheduler2.$stateProvider = StateService();
92769276
scheduler2.getState = scheduler2.$stateProvider.getState;
92779277
extend$n(scheduler2);

codebase/sources/dhtmlxscheduler.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)