redo()
Description
Repeats the action that was reverted by the undo action
info
The redo()
method works with the history: true
config only!
Usage
redo(): void;
Example
// create Kanban
const board = new kanban.Kanban("#root", {
columns,
cards
});
// makes one step back in history of Kanban
board.redo();
Change log: The method was added in v1.3