Change toggle update timing to every tick

This commit is contained in:
Beu 2022-03-03 19:19:26 +01:00
parent ce499759e7
commit 58cf83b975
1 changed files with 2 additions and 2 deletions

View File

@ -106,7 +106,7 @@ class ToggleInterface extends ScriptFeature
if ($this->keyCode != null || $this->keyName != null) {
$script->appendGenericScriptLabel(ScriptLabel::KEYPRESS, $this->getKeyPressScriptText());
} else {
$script->appendGenericScriptLabel(ScriptLabel::TICK, $this->getTickScriptText());
$script->appendGenericScriptLabel(ScriptLabel::LOOP, $this->getLoopScriptText());
}
return $this;
}
@ -156,7 +156,7 @@ if (Event.{$keyProperty} == {$keyValue}) {
*
* @return string
*/
protected function getTickScriptText()
protected function getLoopScriptText()
{
$VarIsVisible = $this::VAR_ISVISIBLE;
$VarWasVisible = $this::VAR_WASVISIBLE;