mirror of
https://github.com/YunoHost-Apps/dokuwiki_ynh.git
synced 2024-09-03 18:26:20 +02:00
12 lines
359 B
JavaScript
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();
|
|
});
|