?? 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: cf7.js

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

	const forms = document.querySelectorAll('.wpcf7-form')

	if (!forms.length) {
		return
	}

	forms.forEach((form) => {
		const notInitializedParent = form.closest('.no-js')

		if (notInitializedParent) {
			wpcf7.init(form)

			notInitializedParent.classList.replace('no-js', 'js')
		}
	})
}


??

??