first commit

This commit is contained in:
2025-06-17 11:53:18 +02:00
commit 9f0f7ba12b
8804 changed files with 1369176 additions and 0 deletions

View File

@ -0,0 +1,29 @@
/**
* @package Joomla.JavaScript
* @copyright (C) 2018 Open Source Matters, Inc. <https://www.joomla.org>
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
((window, document) => {
window.JoomlainitReCaptcha2 = () => {
const elements = [].slice.call(document.getElementsByClassName('g-recaptcha'));
const optionKeys = ['sitekey', 'theme', 'size', 'tabindex', 'callback', 'expired-callback', 'error-callback'];
elements.forEach(element => {
let options = {};
if (element.dataset) {
options = element.dataset;
} else {
optionKeys.forEach(key => {
const optionKeyFq = `data-${key}`;
if (element.hasAttribute(optionKeyFq)) {
options[key] = element.getAttribute(optionKeyFq);
}
});
}
// Set the widget id of the recaptcha item
element.setAttribute('data-recaptcha-widget-id', window.grecaptcha.render(element, options));
});
};
})(window, document);

View File

@ -0,0 +1 @@
((t,a)=>{t.JoomlainitReCaptcha2=()=>{const e=[].slice.call(a.getElementsByClassName("g-recaptcha")),c=["sitekey","theme","size","tabindex","callback","expired-callback","error-callback"];e.forEach((a=>{let e={};a.dataset?e=a.dataset:c.forEach((t=>{const c=`data-${t}`;a.hasAttribute(c)&&(e[t]=a.getAttribute(c))})),a.setAttribute("data-recaptcha-widget-id",t.grecaptcha.render(a,e))}))}})(window,document);

Binary file not shown.