- Patch #737632 by Georg, casey, aspilicious: menu children take top of left region or not at all in IE.

merge-requests/26/head
Dries Buytaert 2010-04-27 13:19:31 +00:00
parent 6f6db74296
commit 416e40bbcd
1 changed files with 1 additions and 1 deletions

View File

@ -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;