summaryrefslogtreecommitdiff
path: root/misc/tabledrag.js
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-04-27 13:19:31 +0000
committerDries Buytaert <dries@buytaert.net>2010-04-27 13:19:31 +0000
commit416e40bbcd72e1bca2aa9f51515f51e88e344c73 (patch)
tree6f6461800fc16b9da3e60d12fd0692c4be47712f /misc/tabledrag.js
parent6f6db7429616ec5ec968f1151ec2ebf8ddc1bddd (diff)
downloadbrdo-416e40bbcd72e1bca2aa9f51515f51e88e344c73.tar.gz
brdo-416e40bbcd72e1bca2aa9f51515f51e88e344c73.tar.bz2
- Patch #737632 by Georg, casey, aspilicious: menu children take top of left region or not at all in IE.
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 8d378e2cc..6dcc28092 100644
--- a/misc/tabledrag.js
+++ b/misc/tabledrag.js
@@ -516,7 +516,7 @@ Drupal.tableDrag.prototype.getMouseOffset = function (target, event) {
* The y coordinate of the mouse on the page (not the screen).
*/
Drupal.tableDrag.prototype.findDropTargetRow = function (x, y) {
- var rows = this.table.tBodies[0].rows;
+ var rows = $(this.table.tBodies[0].rows).not(':hidden');
for (var n = 0; n < rows.length; n++) {
var row = rows[n];
var indentDiff = 0;