diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-03-13 23:15:09 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-03-13 23:15:09 +0000 |
commit | b77475baf5eee88f7ca08adaf53c7c5eda6aca58 (patch) | |
tree | 4a1bf4029dc06956ceaa9c7373dbabb85e4dc3d0 /modules/comment/comment.js | |
parent | 35794257c39c915f15c23b968cd9edd166a12696 (diff) | |
download | brdo-b77475baf5eee88f7ca08adaf53c7c5eda6aca58.tar.gz brdo-b77475baf5eee88f7ca08adaf53c7c5eda6aca58.tar.bz2 |
#360081 by quicksketch: Stop using global variables for JavaScript settings.
Diffstat (limited to 'modules/comment/comment.js')
-rw-r--r-- | modules/comment/comment.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment/comment.js b/modules/comment/comment.js index acd450200..38a026b72 100644 --- a/modules/comment/comment.js +++ b/modules/comment/comment.js @@ -2,7 +2,7 @@ (function($) { Drupal.behaviors.comment = { - attach: function(context) { + attach: function(context, settings) { var parts = new Array("name", "homepage", "mail"); var cookie = ''; for (i=0;i<3;i++) { |