redo()
Description
Re-executes the action that was undone by the undo method
info
The redo()
method is only functional when history: true
is set in the configuration!
Usage
redo(): void;
Example
// create Kanban
const board = new kanban.Kanban("#root", {
columns,
cards
});
// redoes the last undone action in Kanban's history
board.redo();
Change log: This method was introduced in v1.3