- Patch #800968 by JacobSingh, ksenzee: tabledrag.js should not use for...in to iterate over an array.
parent
f8fa114a8e
commit
f8c58bf23d
|
@ -998,7 +998,7 @@ Drupal.tableDrag.prototype.row.prototype.findSiblings = function (rowSettings) {
|
|||
var siblings = [];
|
||||
var directions = ['prev', 'next'];
|
||||
var rowIndentation = this.indents;
|
||||
for (var d in directions) {
|
||||
for (var d = 0; d < directions.length; d++) {
|
||||
var checkRow = $(this.element)[directions[d]]();
|
||||
while (checkRow.length) {
|
||||
// Check that the sibling contains a similar target field.
|
||||
|
|
Loading…
Reference in New Issue