diff 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 diff
--- a/sites/all/modules/recaptcha/recaptcha.js	Thu Aug 22 17:22:54 2013 +0100
+++ b/sites/all/modules/recaptcha/recaptcha.js	Thu Sep 19 10:33:07 2013 +0100
@@ -1,8 +1,8 @@
 (function ($) {
-	Drupal.behaviors.recapcha = {
-		attach: function (context) {
-			$(document).ready(Recaptcha.create(Drupal.settings.recaptcha.public_key, Drupal.settings.recaptcha.container, {theme: Drupal.settings.recaptcha.theme}));
-		},
-		detach: function (context) {}
-	};
+  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));