($cell, restore)
| 790 | // bulk edit (row, column, or all) |
| 791 | if (!immediate) $input.on('keyup', function(e) { |
| 792 | var removeInput = function($cell, restore) { |
| 793 | $cell.data('input').remove(); |
| 794 | if (restore) $cell.html($cell.data('html')); |
| 795 | } |
| 796 | if (e.keyCode === 27) { |
| 797 | for (var i = 0; i < target.length; i++) { |
| 798 | removeInput($(target[i]), true); |