- KanbanGhostCard
A Kanban Ghost Card
- KanbanBoard
A Kanban Board
- KanbanCard
A Kanban Card
- KanbanLane
A Kanban Lane
A Kanban Ghost Card
Kind: global class
Create a new ghost card
Param | Type | Description |
---|---|---|
board | KanBanBoard |
the board to add to |
Copy the contents of the grabbed card to the ghost
Kind: instance method of KanbanGhostCard
Param | Type | Description |
---|---|---|
card | KanbanCard |
the card to copy |
Show the ghost card
Kind: instance method of KanbanGhostCard
Hide the ghost card
Kind: instance method of KanbanGhostCard
Move the ghost card
Kind: instance method of KanbanGhostCard
Param | Type | Description |
---|---|---|
x | number |
x coordinate |
y | number |
y coordinate |
A Kanban Board
Kind: global class
Create a kanban board
Param | Type | Description |
---|---|---|
selector | string |
the selector for the container |
Adds a lane to the board
Kind: instance method of KanbanBoard
Param | Type | Description |
---|---|---|
lane | KanbanLane |
the kanban lane to add |
Adds a card to the board
Kind: instance method of KanbanBoard
Param | Type | Description |
---|---|---|
card | KanbanCard |
the kanban card to add |
laneID | laneID |
lane to add in |
Finds a lane on the board
Kind: instance method of KanbanBoard
Param | Type | Description |
---|---|---|
laneID | string |
the lane ID of the lane to find |
Finds a card on the board
Kind: instance method of KanbanBoard
Param | Type | Description |
---|---|---|
cardID | string |
the card ID of the card to find |
Moves a card to a lane at the end
Kind: instance method of KanbanBoard
Param | Type | Description |
---|---|---|
cardID | string |
the card ID to move |
laneID | string |
the lane ID to put the card in |
Puts a card around a card
Kind: instance method of KanbanBoard
Param | Type | Description |
---|---|---|
cardID1 | string |
the card ID to move |
cardID2 | string |
the card ID to put around |
A Kanban Card
Create a new kanban card
Param | Type | Description |
---|---|---|
id | string |
the selector for the container |
content | any |
content to be put in the card |
template | function |
the template to use on the card |
A Kanban Lane
Kind: global class
Create a new ghost card
Param | Type | Description |
---|---|---|
id | string |
the id of the lane |
content | string |
the content to put in the title |
template | function |
the template function for the title |
Toggle the lane open or minimized
Kind: instance method of KanbanLane