diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-09-01 07:08:11 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-09-01 07:08:11 +0000 |
commit | c07305d060174640af0194f472cb1292a3054e42 (patch) | |
tree | d28c743e977d781303e3f44c47862cb312075ee8 | |
parent | 0c700430b0ddbd4a3c66fb1f82ed1cf9e4e33cc3 (diff) | |
download | brdo-c07305d060174640af0194f472cb1292a3054e42.tar.gz brdo-c07305d060174640af0194f472cb1292a3054e42.tar.bz2 |
#172149 by dvessel: add semicolons, so the JS aggregator works
-rw-r--r-- | misc/tableselect.js | 2 | ||||
-rw-r--r-- | modules/book/book.js | 2 | ||||
-rw-r--r-- | modules/comment/comment.js | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/misc/tableselect.js b/misc/tableselect.js index 978cff7c2..e3a743640 100644 --- a/misc/tableselect.js +++ b/misc/tableselect.js @@ -2,7 +2,7 @@ Drupal.behaviors.tableSelect = function (context) { $('form table[th.select-all]:not(.tableSelect-processed)', context).each(Drupal.tableSelect); -} +}; Drupal.tableSelect = function() { // Keep track of the table, which checkbox is checked and alias the settings. diff --git a/modules/book/book.js b/modules/book/book.js index 13ea71883..a0524b572 100644 --- a/modules/book/book.js +++ b/modules/book/book.js @@ -14,7 +14,7 @@ Drupal.behaviors.bookSelect = function(context) { .keyup(Drupal.bookFillSelect) .change(Drupal.bookFillSelect) .addClass('book-select-processed'); -} +}; // This function passes the form information and the book ID to a Drupal callback // and retrieves a parent select with changed options to replace the one in the form. diff --git a/modules/comment/comment.js b/modules/comment/comment.js index 69baf7423..ead327ec9 100644 --- a/modules/comment/comment.js +++ b/modules/comment/comment.js @@ -32,4 +32,4 @@ Drupal.comment.getCookie = function(name) { } return returnValue; -} +}; |