Skip to content
Snippets Groups Projects
Commit baf6910c authored by Gábor Hojtsy's avatar Gábor Hojtsy
Browse files

#198218 by fractile81 and catch: two missing semicolons in tabledrag.js

parent 9c154113
Branches
Tags
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
......@@ -46,7 +46,7 @@ Drupal.tableDrag = function(table, tableSettings) {
this.oldRowElement = null; // Remember the previous element.
this.oldY = 0; // Used to determine up or down direction from last mouse move.
this.changed = false; // Whether anything in the entire table has changed.
this.maxDepth = 0 // Maximum amount of allowed parenting.
this.maxDepth = 0; // Maximum amount of allowed parenting.
// Configure the scroll settings.
this.scrollSettings = { amount: 4, interval: 50, trigger: 70 };
......@@ -572,7 +572,7 @@ Drupal.tableDrag.prototype.updateFields = function(changedRow) {
// the source rows for each seperately.
this.updateField(changedRow, group);
}
}
};
/**
* After the row is dropped, update a single table field according to specific
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment