Files
EasySoft-ZenTaoPMS/module/ai/ui/promptexecute.html.php
T

22 lines
545 B
PHP

<?php
declare(strict_types=1);
namespace zin;
h::globalJS(<<< JAVASCRIPT
requestAnimationFrame(() =>
{
setTimeout(() =>
{
const currentURL = new URL($.apps.getLastApp().currentUrl, location.href);
const formURL = new URL(`$formLocation`, location.href);
/* Prevent unnecessary refresh. */
const isRegen = window.sessionStorage.getItem('ai-prompt-regen') === 'true';
if(currentURL.href === formURL.href && !isRegen) return;
openUrl(`{$formLocation}`);
}, 1000);
});
JAVASCRIPT);