Skip to content
Snippets Groups Projects
Commit 277e4b1e authored by catch's avatar catch
Browse files

Issue #1039666 by Jelle_S, droplet, Kevin Morse, nod_: Fixed Placing a block...

Issue #1039666 by Jelle_S, droplet, Kevin Morse, nod_: 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.
parent 042de884
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -131,24 +131,8 @@ Drupal.behaviors.blockDrag = { ...@@ -131,24 +131,8 @@ Drupal.behaviors.blockDrag = {
var select = $(this); var select = $(this);
tableDrag.rowObject = new tableDrag.row(row); tableDrag.rowObject = new tableDrag.row(row);
// Find the correct region and insert the row as the first in the region. // Find the correct region and insert the row as the last in the region.
table.find('tr.region-message').each(function () { table.find('.region-' + select[0].value + '-message').nextUntil('.region-message').last().before(row);
if ($(this).is('.region-' + select[0].value + '-message')) {
// Add the new row and remove the old one.
$(this).after(row);
// Manually update weights and restripe.
tableDrag.updateFields(row.get(0));
tableDrag.rowObject.changed = true;
if (tableDrag.oldRowElement) {
$(tableDrag.oldRowElement).removeClass('drag-previous');
}
tableDrag.oldRowElement = row.get(0);
tableDrag.restripeTable();
tableDrag.rowObject.markChanged();
tableDrag.oldRowElement = row;
row.addClass('drag-previous');
}
});
// Modify empty regions with added or removed fields. // Modify empty regions with added or removed fields.
checkEmptyRegions(table, row); checkEmptyRegions(table, row);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment