UNPKG

tabulator-tables

Version:

Interactive table generation JavaScript library

28 lines (22 loc) 606 B
export default { undo:function(e){ var cell = false; if(this.table.options.history && this.table.modExists("history") && this.table.modExists("edit")){ cell = this.table.modules.edit.currentCell; if(!cell){ e.preventDefault(); this.table.modules.history.undo(); } } }, redo:function(e){ var cell = false; if(this.table.options.history && this.table.modExists("history") && this.table.modExists("edit")){ cell = this.table.modules.edit.currentCell; if(!cell){ e.preventDefault(); this.table.modules.history.redo(); } } }, };