redo
Description
Fires when repeating the action that was reverted by the undo action
Usage
"redo": () => void;
信息
For handling the inner events you can use the Event Bus methods
Example
// create Kanban
const board = new kanban.Kanban("#root", {
columns,
cards
});
// subscribe on the "redo" event
board.api.on("redo", () => {
console.log("redo operation");
});
Change log: The event was added in v1.7