summaryrefslogtreecommitdiff
path: root/misc/tabledrag.js
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-12-06 09:53:53 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-12-06 09:53:53 +0000
commitbaf6910cc1002c7b40b2899162a122b3ed441e6d (patch)
tree4b7438cda7f9893e0e5f76f16eb7ae343f57b4d4 /misc/tabledrag.js
parent9c1541139341db5cff5dd3a6724f0cdd1a78e476 (diff)
downloadbrdo-baf6910cc1002c7b40b2899162a122b3ed441e6d.tar.gz
brdo-baf6910cc1002c7b40b2899162a122b3ed441e6d.tar.bz2
#198218 by fractile81 and catch: two missing semicolons in tabledrag.js
Diffstat (limited to 'misc/tabledrag.js')
-rw-r--r--misc/tabledrag.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/tabledrag.js b/misc/tabledrag.js
index 7956aff6c..0a6041c43 100644
--- a/misc/tabledrag.js
+++ b/misc/tabledrag.js
@@ -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