File "tinymce-proxy.js"

Full Path: /home/pumpbmko/public_html/wp-content/plugins/gutenberg/lib/experimental/assets/tinymce-proxy.js
File size: 307 bytes
MIME-type: text/plain
Charset: utf-8

async function reloadWithTinymce() {
	const currentUrl = new URL( window.location.href );
	currentUrl.searchParams.set( 'requiresTinymce', '1' );
	window.location.href = currentUrl;
}

window.tinymce = new Proxy(
	{},
	{
		get: reloadWithTinymce,
		set: reloadWithTinymce,
		apply: reloadWithTinymce,
	}
);