diff options
-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; -} +}; |