UNPKG

@quantlab/handsontable

Version:

Spreadsheet-like data grid editor that provides copy/paste functionality compatible with Excel/Google Docs

19 lines (16 loc) 343 B
'use strict'; exports.__esModule = true; exports.default = redoItem; var KEY = exports.KEY = 'redo'; function redoItem() { return { key: KEY, name: 'Redo', callback: function callback() { this.redo(); }, disabled: function disabled() { return this.undoRedo && !this.undoRedo.isRedoAvailable(); } }; }