summaryrefslogtreecommitdiff
path: root/modules/contact
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-10-16 16:37:01 +0000
committerDries Buytaert <dries@buytaert.net>2009-10-16 16:37:01 +0000
commit4430d46334127c69d5ff97ce2e15475c0fae2654 (patch)
tree0f4d0fd0bb845f0ed14652924fd6921579fcfd98 /modules/contact
parentf46e6626cd5274f1783fb2f6e0e776b8b43b1a5c (diff)
downloadbrdo-4430d46334127c69d5ff97ce2e15475c0fae2654.tar.gz
brdo-4430d46334127c69d5ff97ce2e15475c0fae2654.tar.bz2
- Patch #440876: missing files.
Diffstat (limited to 'modules/contact')
-rw-r--r--modules/contact/contact.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/modules/contact/contact.js b/modules/contact/contact.js
deleted file mode 100644
index 41ddc711d..000000000
--- a/modules/contact/contact.js
+++ /dev/null
@@ -1,16 +0,0 @@
-// $Id$
-(function ($) {
-
-Drupal.behaviors.contact = {
- attach: function(context) {
- $.each(['name', 'mail'], function () {
- var cookie = $.cookie('Drupal.visitor.' + this);
- if (cookie) {
- $('#contact-site-form input[name=' + this + ']', context).once('comment').val(cookie);
- $('#contact-personal-form input[name=' + this + ']', context).once('comment').val(cookie);
- }
- });
- }
-};
-
-})(jQuery);