Skip to content

Commit bd21881

Browse files
Merge pull request #83 from ArtiBorisevich/GS-3259
GS-3259
2 parents db40b80 + 86b30e2 commit bd21881

2,970 files changed

Lines changed: 110116 additions & 84721 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/api/config/details_on_dblclick.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ gantt.init("gantt_here");
2121
~~~
2222

2323
**Default value:** true
24-
s
24+

docs/api/config/show_empty_state.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ gantt.config.show_empty_state = true;
2929
![empty screen tip](/img/empty_screen.png)
3030

3131
### Related Guides
32-
- [](../../guides/empty-state-screen.md)
33-
- [](../../guides/empty-state-element-ext.md)
32+
- [Empty State Screen](guides/empty-state-screen.md)
33+
- [emptyStateElement Extension](guides/empty-state-element-ext.md)
3434

3535
### Change log
3636
- added in version 8.0

docs/api/config/types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var type1 = gantt.config.types.task;
2626
### Details
2727

2828
:::note
29-
pronote This functionality is available in the PRO edition only.
29+
This functionality is available in the PRO edition only.
3030
:::
3131

3232
The 'types' object consists of the **"type programmatic name"**: **"type identifier"** pairs:

docs/api/event/onbeforesplittaskdisplay.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ sample: [Filter split tasks ](https://snippet.dhtmlx.com/3q1yd7iz)
4343
:::
4444

4545
### Related Guides
46-
- [Split Tasks](/guides/split-tasks/)
46+
- [Split Tasks](guides/split-tasks.md)
4747

4848
### Change log
4949
- added in v8.0

docs/api/other/json.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ description: "specifies JSON serialization and parsing"
1515
### Example
1616

1717
~~~jsx
18-
var obj = gantt.json; // -> { parse(data){...
19-
:::
18+
const obj = gantt.json; // -> { parse(data){... }}
2019
~~~
2120

2221
### Details

docs/api/other/oldxml.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ description: "specifies serialization and parsing in the XML format of dhtmlxGan
1515
### Example
1616

1717
~~~jsx
18-
var obj = gantt.oldxml; // -> { parse(text,loader){...}, serialize(){...
19-
:::
18+
const obj = gantt.oldxml; // -> { parse(text,loader){...}, serialize(){... }}
2019
~~~
2120

2221
### Details

docs/api/template/format_date.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ description: "converts a date object to a date string. Used to send data back to
2424
~~~jsx
2525
var dateToStr = gantt.date.date_to_str("%Y-%m-%d %H:%i");
2626
gantt.templates.format_date = function(date){
27-
return dateToStr (date);
27+
return dateToStr(date);
2828
};
2929
~~~
3030

@@ -62,7 +62,7 @@ var cfg = gantt.config;
6262
var strToDate = gantt.date.str_to_date(cfg.date_format, cfg.server_utc);
6363

6464
gantt.templates.parse_date = function(date){
65-
return strToDate (date);
65+
return strToDate(date);
6666
};
6767
~~~
6868

docs/api/template/parse_date.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var cfg = gantt.config;
2626
var strToDate = gantt.date.str_to_date(cfg.date_format, cfg.server_utc);
2727

2828
gantt.templates.parse_date = function(date){
29-
return strToDate (date);
29+
return strToDate(date);
3030
};
3131
~~~
3232

docs/guides/configuring-time-scale.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -779,9 +779,9 @@ With this setting specified, each cell in the bottom scale ("day" in the above e
779779
- If there are too few columns to fill the container, the remaining space will stay empty on the right.
780780
- If there are too many columns, a horizontal scrollbar will appear.
781781

782-
{{note
782+
:::note
783783
Note that `column_width` is applied only to the bottom-most scale item in `gantt.config.scales`, while specifying it on higher levels will have no effect.
784-
}}
784+
:::
785785

786786
Also note that when `column_width` is set, `gantt.config.min_column_width` is not applied to the bottom scale.
787787

docs/guides/dragging-dependent-tasks.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -230,5 +230,3 @@ The full code will be as follows:
230230
})();
231231
~~~
232232

233-
@linkclass:hidden
234-

0 commit comments

Comments
 (0)