diff --git a/core/misc/ajax.js b/core/misc/ajax.js index 4dba53e..bace22d 100644 --- a/core/misc/ajax.js +++ b/core/misc/ajax.js @@ -879,7 +879,7 @@ // called with a context object that includes top-level text nodes. // However, to give developers full control of the HTML appearing in the // page, and to enable Ajax content to be inserted in places where DIV - // elements are not allowed (e.g., within TABLE, TR, and SPAN parents), + // elements are not allowed (e.g., within , , and parents), // we check if the new content satisfies the requirement of a single // top-level element, and only use the container DIV created above when // it doesn't. For more information, please see diff --git a/core/misc/tableselect.js b/core/misc/tableselect.js index 8a77695..9a3cc13 100644 --- a/core/misc/tableselect.js +++ b/core/misc/tableselect.js @@ -89,7 +89,7 @@ // range. Also make sure that we are actually checking checkboxes // over a range and that a checkbox has been checked or unchecked before. if (e.shiftKey && lastChecked && lastChecked !== e.target) { - // We use the checkbox's parent TR to do our range searching. + // We use the checkbox's parent to do our range searching. Drupal.tableSelectRange($(e.target).closest('tr')[0], $(lastChecked).closest('tr')[0], e.target.checked); }