blob: 753e9925203fc948ae009c1172e868df5475f2c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// $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);
|