summaryrefslogtreecommitdiff
path: root/misc/tabledrag.js
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-06-10 19:42:28 +0000
committerDries Buytaert <dries@buytaert.net>2008-06-10 19:42:28 +0000
commit8e8c8305aaa5f2f2379c29310e005b0445eba898 (patch)
tree0c5acafaf3164f89d0e2d332db258db6ccabd783 /misc/tabledrag.js
parent3020deb421edfc00f54f86f50b490b47f157204e (diff)
downloadbrdo-8e8c8305aaa5f2f2379c29310e005b0445eba898.tar.gz
brdo-8e8c8305aaa5f2f2379c29310e005b0445eba898.tar.bz2
- Patch #259096 by cwgordon7: commenting standards are broken in tabledrag.js.
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){