From 2e460ac3b4cae4e9e265980d5e9f7c2c6e03c3ef Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Wed, 10 Mar 2010 20:31:59 +0000 Subject: #737596 by casey: Fixed tabledrag.js: ('.indentation', testCell).get(1) is undefined. --- misc/tabledrag.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'misc/tabledrag.js') diff --git a/misc/tabledrag.js b/misc/tabledrag.js index c671c31ed..11ec74629 100644 --- a/misc/tabledrag.js +++ b/misc/tabledrag.js @@ -73,10 +73,10 @@ Drupal.tableDrag = function (table, tableSettings) { // manually append 2 indentations in the first draggable row, measure // the offset, then remove. var indent = Drupal.theme('tableDragIndentation'); - // Match immediate children of the parent element to allow nesting. - var testCell = $('> tbody > tr.draggable:first td:first, > tr.draggable:first td:first', table).prepend(indent).prepend(indent); + var testRow = $('').addClass('draggable').appendTo(table); + var testCell = $('').appendTo(testRow).prepend(indent).prepend(indent); this.indentAmount = $('.indentation', testCell).get(1).offsetLeft - $('.indentation', testCell).get(0).offsetLeft; - $('.indentation', testCell).slice(0, 2).remove(); + testRow.remove(); } // Make each applicable row draggable. -- cgit v1.2.3