summaryrefslogtreecommitdiff
path: root/misc/tabledrag.js
diff options
context:
space:
mode:
Diffstat (limited to 'misc/tabledrag.js')
-rw-r--r--misc/tabledrag.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/tabledrag.js b/misc/tabledrag.js
index be8c225c4..abddd4380 100644
--- a/misc/tabledrag.js
+++ b/misc/tabledrag.js
@@ -486,7 +486,7 @@ Drupal.tableDrag.prototype.getPosition = function(element){
// cells, grab the firstChild of the row and use that instead.
// http://jacob.peargrove.com/blog/2006/technical/table-row-offsettop-bug-in-safari
if (element.offsetHeight == 0) {
- element = element.firstChild; // a table cell
+ element = element.firstChild; // A table cell.
}
while (element.offsetParent){