Skip to content
Merged

Next #120

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion docs/api/events/js_kanban_addcolumn_event.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@ board.api.on("add-column", (obj) => {
});
~~~

**Change log**: The **id**, **before** and **column** parameters were added in v1.1
**Change log:** The **id**, **before** and **column** parameters were added in v1.1
2 changes: 1 addition & 1 deletion docs/api/events/js_kanban_addrow_event.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@ board.api.on("add-row", (obj) => {
});
~~~

**Change log**: The **id**, **before** and **row** parameters were added in v1.1
**Change log:** The **id**, **before** and **row** parameters were added in v1.1
2 changes: 1 addition & 1 deletion docs/api/events/js_kanban_redo_event.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ board.api.on("redo", () => {
});
~~~

**Change log**: The event was added in v1.7
**Change log:** The event was added in v1.7
2 changes: 1 addition & 1 deletion docs/api/events/js_kanban_undo_event.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ board.api.on("undo", () => {
});
~~~

**Change log**: The event was added in v1.7
**Change log:** The event was added in v1.7
2 changes: 1 addition & 1 deletion docs/api/events/js_kanban_updatecard_event.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@ board.api.on("update-card", (obj) => {
});
~~~

**Change log**:
**Change log:**
- The **id** and **card** parameters were added in v1.1
- The **replace** parameter was added in v1.3
2 changes: 1 addition & 1 deletion docs/api/events/js_kanban_updatecolumn_event.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@ board.api.on("update-column", (obj) => {
});
~~~

**Change log**:
**Change log:**
- The **id** and **column** parameters were added in v1.1
- The **replace** parameter was added in v1.3
2 changes: 1 addition & 1 deletion docs/api/events/js_kanban_updaterow_event.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@ board.api.on("update-row", (obj) => {
});
~~~

**Change log**:
**Change log:**
- The **id** and **row** parameters were added in v1.1
- The **replace** parameter was added in v1.3
2 changes: 1 addition & 1 deletion docs/api/internal/js_kanban_detach_method.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ board.api.on("move-card", ({ id, columnId }) => {
board.api.detach("move");
~~~

**Change log**: The internal method was added in v1.7
**Change log:** The internal method was added in v1.7
2 changes: 1 addition & 1 deletion docs/api/internal/js_kanban_intercept_method.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ board.api.intercept("move-card", ({ id, columnId }) => {
}, {tag: "move"});
~~~

**Change log**: The **config.tag** and **config.intercept** parameters were added in v1.7
**Change log:** The **config.tag** and **config.intercept** parameters were added in v1.7
2 changes: 1 addition & 1 deletion docs/api/internal/js_kanban_on_method.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@ board.api.on("move-card", ({ id, columnId }) => {
}, {tag: "move"});
~~~

**Change log**: The **config.tag** and **config.intercept** parameters were added in v1.7
**Change log:** The **config.tag** and **config.intercept** parameters were added in v1.7
2 changes: 1 addition & 1 deletion docs/api/methods/js_kanban_addcolumn_method.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,4 @@ board.addColumn({
});
~~~

**Change log**: The **id**, **column** and **before** parameters were added in v1.1
**Change log:** The **id**, **column** and **before** parameters were added in v1.1
2 changes: 1 addition & 1 deletion docs/api/methods/js_kanban_addrow_method.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ board.addRow({
});
~~~

**Change log**: The **id**, **row** and **before** parameters were added in v1.1
**Change log:** The **id**, **row** and **before** parameters were added in v1.1
2 changes: 1 addition & 1 deletion docs/api/methods/js_kanban_getcolumncards_method.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ const cards_data = board.getColumnCards(1);
console.log(cards_data);
~~~

**Change log**: The method was added in v1.7
**Change log:** The method was added in v1.7
2 changes: 1 addition & 1 deletion docs/api/methods/js_kanban_updatecard_method.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@ board.updateCard({
});
~~~

**Change log**:
**Change log:**
- The **id** and **card** parameters were added in v1.1
- The **replace** parameter was added in v1.3
2 changes: 1 addition & 1 deletion docs/api/methods/js_kanban_updatecolumn_method.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@ board.updateColumn({
});
~~~

**Change log**:
**Change log:**
- The **id** and **column** parameters were added in v1.1
- The **replace** parameter was added in v1.3
2 changes: 1 addition & 1 deletion docs/api/methods/js_kanban_updaterow_method.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@ board.updateRow({
});
~~~

**Change log**:
**Change log:**
- The **id** and **row** parameters were added in v1.1
- The **replace** parameter was added in v1.3
4 changes: 2 additions & 2 deletions docs/api/overview/main_overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ new kanban.Kanban("#root", {
});
~~~

**Parameters**:
**Parameters:**

- an HTML container (the ID of the HTML container)
- an object of the configuration parameters ([check here](#kanban-properties))
Expand All @@ -27,7 +27,7 @@ new kanban.Toolbar("#toolbar", {
});
~~~

**Parameters**:
**Parameters:**

- an HTML container (the ID of the HTML container)
- an object of the configuration parameters ([check here](#toolbar-properties))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ The HTTP status code shows whether the request succeeds (response.status == 200)

---

**Related articles**: [Working with server](guides/working_with_server.md)
**Related articles:** [Working with server](guides/working_with_server.md)
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ No data is returned back. The HTTP status code shows whether the request succeed

---

**Related articles**: [Working with server](guides/working_with_server.md)
**Related articles:** [Working with server](guides/working_with_server.md)
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ The HTTP status code shows whether the request succeeds (response.status == 200)

---

**Related articles**: [Working with server](guides/working_with_server.md)
**Related articles:** [Working with server](guides/working_with_server.md)
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ No data is returned back. The HTTP status code shows whether the request succeed

---

**Related articles**: [Working with server](guides/working_with_server.md)
**Related articles:** [Working with server](guides/working_with_server.md)
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ No data is returned back. The HTTP status code shows whether the request succeed

---

**Related articles**:
**Related articles:**
- [Working with server](guides/working_with_server.md)
- [getLinks()](api/provider/rest_methods/js_kanban_getlinks_method.md)
- [links](api/config/js_kanban_links_config.md)
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ No data is returned back. The HTTP status code shows whether the request succeed

---

**Related articles**: [Working with server](guides/working_with_server.md)
**Related articles:** [Working with server](guides/working_with_server.md)
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,6 @@ The HTTP status code shows whether the request succeeds (response.status == 200)

---

**Related articles**:
**Related articles:**
- [Working with server](guides/working_with_server.md)
- [getCards()](api/provider/rest_methods/js_kanban_getcards_method.md)
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@ The HTTP status code shows whether the request succeeds (response.status == 200)

---

**Related articles**:
**Related articles:**
- [Working with server](guides/working_with_server.md)
- [getColumns()](api/provider/rest_methods/js_kanban_getcolumns_method.md)
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@ The HTTP status code shows whether the request succeeds (response.status == 200)

---

**Related articles**:
**Related articles:**
- [Working with server](guides/working_with_server.md)
- [getLinks()](api/provider/rest_methods/js_kanban_getlinks_method.md)
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@ The HTTP status code shows whether the request succeeds (response.status == 200)

---

**Related articles**:
**Related articles:**
- [Working with server](guides/working_with_server.md)
- [getRows()](api/provider/rest_methods/js_kanban_getrows_method.md)
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ The HTTP status code shows whether the request succeeds (response.status == 200)

---

**Related articles**: [Working with server](guides/working_with_server.md)
**Related articles:** [Working with server](guides/working_with_server.md)
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,6 @@ The HTTP status code shows whether the request succeeds (response.status == 200)

---

**Related articles**:
**Related articles:**
- [Working with server](guides/working_with_server.md)
- [getUsers()](api/provider/rest_methods/js_kanban_getusers_method.md)
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ The HTTP status code shows whether the request succeeds (response.status == 200)

---

**Related articles**: [Working with server](guides/working_with_server.md)
**Related articles:** [Working with server](guides/working_with_server.md)
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@ The HTTP status code shows whether the request succeeds (response.status == 200)

---

**Related articles**: [Working with server](guides/working_with_server.md)
**Related articles:** [Working with server](guides/working_with_server.md)
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ The HTTP status code shows whether the request succeeds (response.status == 200)

---

**Related articles**: [Working with server](guides/working_with_server.md)
**Related articles:** [Working with server](guides/working_with_server.md)
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ The HTTP status code shows whether the request succeeds (response.status == 200)

---

**Related articles**: [Working with server](guides/working_with_server.md)
**Related articles:** [Working with server](guides/working_with_server.md)
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ The HTTP status code shows whether the request succeeds (response.status == 200)

---

**Related articles**:
**Related articles:**
- [Working with server](guides/working_with_server.md)
- [getLinks()](api/provider/rest_methods/js_kanban_getlinks_method.md)
- [links](api/config/js_kanban_links_config.md)
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ The HTTP status code shows whether the request succeeds (response.status == 200)

---

**Related articles**: [Working with server](guides/working_with_server.md)
**Related articles:** [Working with server](guides/working_with_server.md)
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@ The HTTP status code shows whether the request succeeds (response.status == 200)

---

**Related articles**: [Working with server](guides/working_with_server.md)
**Related articles:** [Working with server](guides/working_with_server.md)
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ The HTTP status code shows whether the request succeeds (response.status == 200)

---

**Related articles**: [Working with server](guides/working_with_server.md)
**Related articles:** [Working with server](guides/working_with_server.md)
Original file line number Diff line number Diff line change
Expand Up @@ -90,4 +90,4 @@ The HTTP status code shows whether the request succeeds (response.status == 200)

---

**Related articles**: [Working with server](guides/working_with_server.md)
**Related articles:** [Working with server](guides/working_with_server.md)
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,4 @@ The HTTP status code shows whether the request succeeds (response.status == 200)

---

**Related articles**: [Working with server](guides/working_with_server.md)
**Related articles:** [Working with server](guides/working_with_server.md)
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,4 @@ The HTTP status code shows whether the request succeeds (response.status == 200)

---

**Related articles**: [Working with server](guides/working_with_server.md)
**Related articles:** [Working with server](guides/working_with_server.md)
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ The HTTP status code shows whether the request succeeds (response.status == 200)

---

**Related articles**: [Working with server](guides/working_with_server.md)
**Related articles:** [Working with server](guides/working_with_server.md)
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,4 @@ The HTTP status code shows whether the request succeeds (response.status == 200)

---

**Related articles**: [Working with server](guides/working_with_server.md)
**Related articles:** [Working with server](guides/working_with_server.md)
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ The HTTP status code shows whether the request succeeds (response.status == 200)

---

**Related articles**: [Working with server](guides/working_with_server.md)
**Related articles:** [Working with server](guides/working_with_server.md)
Loading
Loading