1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/dokuwiki_ynh.git synced 2024-09-03 18:26:20 +02:00
dokuwiki_ynh/sources/lib/plugins/captcha/script.js
2014-07-20 13:52:39 +02:00

12 lines
359 B
JavaScript

/**
* Autofill and hide the whole captcha stuff in the simple JS mode
*/
jQuery(function () {
var $code = jQuery('#plugin__captcha_code');
if (!$code.length) return;
var $box = jQuery('#plugin__captcha_wrapper input[type=text]');
$box.first().val($code.text().replace(/([^A-Z])+/g, ''));
jQuery('#plugin__captcha_wrapper').hide();
});