?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/demo2/wp-content/themes/blocksy/static/js/frontend/integration/



?? Go up: /home/webdevt/www/demo2/wp-content/themes/blocksy/static/js/frontend

?? Viewing: turnstile.js

export const mount = () => {
	if (!window.turnstile) {
		return
	}

	const forms = document.querySelectorAll('.ct-popup .cf-turnstile')

	if (!forms.length) {
		return
	}

	forms.forEach((form) => {
		turnstile.remove(form)
		turnstile.render(form)
		turnstile.reset(form)
	})
}


??

??