Skip to content

Commit d515d97

Browse files
committed
[dev] correct internal links
1 parent fa54fea commit d515d97

139 files changed

Lines changed: 384 additions & 384 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/configs/activeproject_config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@ const toolbar = new Toolbar("#toolbar", {
5050
});
5151
~~~
5252

53-
**Related article:** [Managing projects](../../../guides/project_index/)
53+
**Related article:** [Managing projects](/guides/project_index/)

docs/api/configs/drag_config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,4 @@ const toolbar = new Toolbar("#toolbar", {
7070

7171
**Change log:** Added in v1.1
7272

73-
**Related article:** [Configuration](../../../guides/configuration/#drag-n-drop)
73+
**Related article:** [Configuration](/guides/configuration/#drag-n-drop)

docs/api/configs/history_config.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ description: You can learn about the history config in the documentation of the
1111
@short: Optional. Enables/disables managing the history of changes
1212

1313
:::info
14-
Using the `history` property you can enable/disable managing the history of changes in To Do List. If you set the `history` property to `false`, you will not be able to manage the history of changes using [`undo()`](../../../api/methods/undo_method/)/[`redo()`](../../../api/methods/redo_method/) methods and controls on Toolbar.
14+
Using the `history` property you can enable/disable managing the history of changes in To Do List. If you set the `history` property to `false`, you will not be able to manage the history of changes using [`undo()`](/api/methods/undo_method/)/[`redo()`](/api/methods/redo_method/) methods and controls on Toolbar.
1515
:::
1616

1717
### Usage
@@ -67,5 +67,5 @@ new ToDo("#root", {
6767
**Change log:** The `history` config was added in v1.3
6868

6969
**Related API:**
70-
- [`redo`](../../../api/methods/redo_method/)
71-
- [`undo`](../../../api/methods/undo_method/)
70+
- [`redo`](/api/methods/redo_method/)
71+
- [`undo`](/api/methods/undo_method/)

docs/api/configs/locale_config.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ locale?: object;
1818

1919
### Default config
2020

21-
By default, DHTMLX To Do List uses [English locale](../../../guides/localization/#default-locale).
21+
By default, DHTMLX To Do List uses [English locale](/guides/localization/#default-locale).
2222

2323
~~~js
2424
locale: en
@@ -45,13 +45,13 @@ const toolbar = new Toolbar("#toolbar", {
4545

4646

4747
:::info
48-
The Toolbar is a separate component of To Do List . Thus, you also need to apply the necessary locale to the **Toolbar** via the related [`locale`](../../../api/toolbar_../../../api/configs/locale_config/) property
48+
The Toolbar is a separate component of To Do List . Thus, you also need to apply the necessary locale to the **Toolbar** via the related [`locale`](/api/toolbar_api/configs/locale_config/) property
4949
:::
5050

5151
:::tip
52-
To change the locale dynamically, use the [`setLocale()`](../../../api/methods/setlocale_method/) method
52+
To change the locale dynamically, use the [`setLocale()`](/api/methods/setlocale_method/) method
5353
:::
5454

55-
**Related article:** [Localization](../../../guides/localization/)
55+
**Related article:** [Localization](/guides/localization/)
5656

5757
**Related sample:** [To do list. Localization](https://snippet.dhtmlx.com/kzjwvuq5)

docs/api/configs/priorities_config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,6 @@ document.addEventListener("keydown", event => {
119119
~~~
120120

121121
**Related articles:**
122-
- [Loading and storing data](../../../guides/loading_data/)
122+
- [Loading and storing data](/guides/loading_data/)
123123

124124
**Related sample:** [To do list. Custom hotkeys for setting priorities](https://snippet.dhtmlx.com/5cymicwt?tag=todolist)

docs/api/configs/projects_config.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ const toolbar = new Toolbar("#toolbar", {
5252
~~~
5353

5454
:::tip
55-
By default, the first project from the list of project objects will be loaded as an active project. To specify any other project as an active one, use the [`activeProject`](../../../api/configs/activeproject_config/) property
55+
By default, the first project from the list of project objects will be loaded as an active project. To specify any other project as an active one, use the [`activeProject`](/api/configs/activeproject_config/) property
5656
:::
5757

5858
**Related articles:**
59-
- [Loading and storing data](../../../guides/loading_data/)
60-
- [Managing projects](../../../guides/project_index/)
59+
- [Loading and storing data](/guides/loading_data/)
60+
- [Managing projects](/guides/project_index/)

docs/api/configs/readonly_config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ const toolbar = new Toolbar("#toolbar", {
4747
});
4848
~~~
4949

50-
**Related article:** [Read-only mode](../../../guides/readonly_mode/)
50+
**Related article:** [Read-only mode](/guides/readonly_mode/)

docs/api/configs/selected_config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ const toolbar = new Toolbar("#toolbar", {
3939

4040
**Change log:** Added in v1.1
4141

42-
**Related article:** [Multiple select and bulk operations](../../../guides/multiselection/)
42+
**Related article:** [Multiple select and bulk operations](/guides/multiselection/)

docs/api/configs/tags_config.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,5 @@ const toolbar = new Toolbar("#toolbar", {
4343
~~~
4444

4545
**Related articles:**
46-
- [Loading and storing data](../../../guides/loading_data/)
47-
- [Inline editing](../../../guides/inline_editing/)
46+
- [Loading and storing data](/guides/loading_data/)
47+
- [Inline editing](/guides/inline_editing/)

docs/api/configs/tasks_config.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The **tasks** property presents an array of task objects. Each object includes t
3939

4040
- `id` - (optional) the id of a task
4141
- `parent` - (optional) the id of the parent task. The value of the parameter is **null | undefined** for root tasks
42-
- `project` - (optional) the id of the project where the task should be rendered. To initialize the projects, use the [projects](../../../api/configs/projects_config/) property.
42+
- `project` - (optional) the id of the project where the task should be rendered. To initialize the projects, use the [projects](/api/configs/projects_config/) property.
4343

4444
:::info
4545
If there are projects initialized, specify the ID of the necessary project for the root task to display it in this project.
@@ -50,12 +50,12 @@ If you don't specify the project ID for the root task or set it to *null* or *un
5050
- `text` - (optional) the text of the task
5151
- `checked` - (optional) marks the task as completed
5252
- `collapsed` - (optional) defines whether the task is collapsed initially (in case the task has subtasks)
53-
- `assigned` - (optional) an array with ID(s) of the people assigned to the task. To initialize the list of assignees, use the [users](../../../api/configs/users_config/) property.
53+
- `assigned` - (optional) an array with ID(s) of the people assigned to the task. To initialize the list of assignees, use the [users](/api/configs/users_config/) property.
5454
- `due_date` - (optional) the date when the task must be completed
5555
- `creation_date` - (optional) the date of the task creation (auto-generated)
5656
- `completion_date` - (optional) the date of the task completion (auto-generated when you mark a task as complete; auto-removed when you mark a task as incomplete)
5757
- `edited_date` - (optional) the date of the task editing (auto-generated when you change the text of the task)
58-
- `priority` - (optional) the priority of the task. To set the priorities, use the [priorities](../../../api/configs/priorities_config/) property
58+
- `priority` - (optional) the priority of the task. To set the priorities, use the [priorities](/api/configs/priorities_config/) property
5959
- `[key: string]`- (optional) a set of custom properties
6060

6161
### Example
@@ -115,5 +115,5 @@ const toolbar = new Toolbar("#toolbar", {
115115
**Change log:** The `priority` parameter was added in v1.2
116116

117117
**Related articles:**
118-
- [Loading and storing data](../../../guides/loading_data/)
119-
- [Managing tasks](../../../guides/task_index/)
118+
- [Loading and storing data](/guides/loading_data/)
119+
- [Managing tasks](/guides/task_index/)

0 commit comments

Comments
 (0)