Skip to content

Commit 36b6df8

Browse files
committed
[update] version 9.0.14
1 parent 4436d0d commit 36b6df8

15 files changed

+34
-27
lines changed

README.md

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

33
[![dhtmlx.com](https://img.shields.io/badge/made%20by-DHTMLX-blue)](https://dhtmlx.com/)
4-
[![npm: v.9.0.13](https://img.shields.io/badge/npm-v.9.0.13-blue.svg)](https://www.npmjs.com/package/dhtmlx-gantt)
4+
[![npm: v.9.0.14](https://img.shields.io/badge/npm-v.9.0.14-blue.svg)](https://www.npmjs.com/package/dhtmlx-gantt)
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
[Getting started](#getting-started) | [Features](#features) | [License](#license) | [Useful links](#links) | [Follow us](#followus)
@@ -117,7 +117,7 @@ Resource management, critical path calculation, auto scheduling, and other enhan
117117
<a name="license"></a>
118118
## License ##
119119

120-
dhtmlxGantt v.9.0.13 Standard
120+
dhtmlxGantt v.9.0.14 Standard
121121

122122
This version of dhtmlxGantt is distributed under GPL 2.0 license and can be legally used in GPL projects.
123123

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gantt",
3-
"version": "9.0.13",
3+
"version": "9.0.14",
44
"homepage": "https://dhtmlx.com/docs/products/dhtmlxGantt/",
55
"description": "An open source JavaScript Gantt chart that helps you illustrate a project schedule in a nice-looking chart.",
66
"main": [

codebase/dhtmlxgantt.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Type definitions for dhtmlxGantt 9.0.13
1+
// Type definitions for dhtmlxGantt 9.0.14
22
// Project: https://dhtmlx.com/docs/products/dhtmlxGantt
33

44
type GanttCallback = (...args: any[]) => any;

codebase/dhtmlxgantt.es.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Type definitions for dhtmlxGantt 9.0.13
1+
// Type definitions for dhtmlxGantt 9.0.14
22
// Project: https://dhtmlx.com/docs/products/dhtmlxGantt
33

44
type GanttCallback = (...args: any[]) => any;

codebase/dhtmlxgantt.es.js

Lines changed: 4 additions & 4 deletions
Large diffs are not rendered by default.

codebase/dhtmlxgantt.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/dhtmlxgantt.js

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

codebase/dhtmlxgantt.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/dhtmlxgantt.es.js

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

3-
dhtmlxGantt v.9.0.13 Standard
3+
dhtmlxGantt v.9.0.14 Standard
44

55
This version of dhtmlxGantt is distributed under GPL 2.0 license and can be legally used in GPL projects.
66

@@ -2733,7 +2733,7 @@ function modals(gantt2) {
27332733
}
27342734
function restoreFocus() {
27352735
setTimeout(function() {
2736-
if (focusElement) {
2736+
if (focusElement && focusElement.focus) {
27372737
focusElement.focus();
27382738
focusElement = null;
27392739
}
@@ -12536,7 +12536,7 @@ CalendarWorkTimeStrategy.prototype = { units: ["year", "month", "week", "day", "
1253612536
} else if (!settings.customWeeks) {
1253712537
calendarConfig.customWeeks[settings.customWeeks].hours = hours;
1253812538
}
12539-
} else if (typeof settings.customWeeks === "object" && Function.prototype.toString.call(settings.customWeeks.constructor) === "function Object() { [native code] }") {
12539+
} else if (typeof settings.customWeeks === "object" && settings.customWeeks.constructor === Object) {
1254012540
for (var i in settings.customWeeks) {
1254112541
calendarConfig.customWeeks[i] = settings.customWeeks[i];
1254212542
}
@@ -14566,7 +14566,7 @@ function i18nFactory() {
1456614566
}
1456714567
function DHXGantt() {
1456814568
this.constants = constants;
14569-
this.version = "9.0.13";
14569+
this.version = "9.0.14";
1457014570
this.license = "gpl";
1457114571
this.templates = {};
1457214572
this.ext = {};

codebase/sources/dhtmlxgantt.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.

0 commit comments

Comments
 (0)