summaryrefslogtreecommitdiff
path: root/modules/comment
diff options
context:
space:
mode:
Diffstat (limited to 'modules/comment')
-rw-r--r--modules/comment/comment.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/modules/comment/comment.js b/modules/comment/comment.js
deleted file mode 100644
index 753e99252..000000000
--- a/modules/comment/comment.js
+++ /dev/null
@@ -1,15 +0,0 @@
-// $Id$
-(function ($) {
-
-Drupal.behaviors.comment = {
- attach: function (context, settings) {
- $.each(['name', 'homepage', 'mail'], function () {
- var cookie = $.cookie('Drupal.visitor.' + this);
- if (cookie) {
- $('#comment-form input[name=' + this + ']', context).once('comment').val(cookie);
- }
- });
- }
-};
-
-})(jQuery);