From 5502614b30713624210f01b681ff94f15aa097fe Mon Sep 17 00:00:00 2001 From: Rumi Allbert <57306274+RumiAllbert@users.noreply.github.com> Date: Sun, 23 Jan 2022 19:02:37 -0600 Subject: [PATCH] Update dataTables.cellEdit.js --- js/dataTables.cellEdit.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/dataTables.cellEdit.js b/js/dataTables.cellEdit.js index 974810c..720cc7f 100644 --- a/js/dataTables.cellEdit.js +++ b/js/dataTables.cellEdit.js @@ -49,7 +49,7 @@ jQuery.fn.dataTable.Api.register('MakeCellsEditable()', function (settings) { } else if (!newValue) { _addValidationCss(); } - //All columns allow null + // All columns allow null } else if (newValue && settings.onValidate) { if (settings.onValidate(cell, row, newValue)) { _update(newValue); @@ -71,7 +71,7 @@ jQuery.fn.dataTable.Api.register('MakeCellsEditable()', function (settings) { function _update(newValue) { var oldValue = cell.data(); cell.data(newValue); - //Return cell & row. + // Return cell & row. settings.onUpdate(cell, row, oldValue); } // Get current page