Revert "Issue #1039666 by mlncn: Fixed Placing a block in a region via select dropdown moves it to the top of the region, but it will show at the bottom."

This reverts commit b39fe6dbb7.
8.0.x
webchick 2011-12-28 20:39:39 -08:00
parent 3cb556e300
commit 7ecad2daee
1 changed files with 2 additions and 2 deletions

View File

@ -117,11 +117,11 @@ Drupal.behaviors.blockDrag = {
var select = $(this);
tableDrag.rowObject = new tableDrag.row(row);
// Find the correct region and insert the row as the last in the region.
// Find the correct region and insert the row as the first in the region.
$('tr.region-message', table).each(function () {
if ($(this).is('.region-' + select[0].value + '-message')) {
// Add the new row and remove the old one.
$(this).nextUntil('.region-title').last().after(row);
$(this).after(row);
// Manually update weights and restripe.
tableDrag.updateFields(row.get(0));
tableDrag.rowObject.changed = true;