undo
Description
Fires when reverting the last operation in Kanban
Usage
"undo": () => void;
info
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 "undo" event
board.api.on("undo", () => {
console.log("Undo operation");
});
Change log: The event was added in v1.7