view sites/all/modules/recaptcha/recaptcha.js @ 3:b28be78d8160

alpha1.0 version
author danieleb <danielebarchiesi@me.com>
date Thu, 19 Sep 2013 10:33:07 +0100
parents b74b41bb73f0
children
line wrap: on
line source
(function ($) {
  Drupal.behaviors.recaptcha = {
    attach: function (context) {
      $(document).ready(Recaptcha.create(Drupal.settings.recaptcha.public_key, Drupal.settings.recaptcha.container, {theme: Drupal.settings.recaptcha.theme}));
    },
    detach: function (context) {}
  };
}(jQuery));