Wix Turbo Bug

Hello,
I’m assuming this is a Wix Turbo Bug because it only happens on my Site where Wix Turbo is enabled.

To reproduce the Bug:
1. Insert any element that can be hidden;
2. Hide the element using the properties pane;
3. Add any animation to the element (make sure “Only animate first time” is disabled);
4. Insert a button and add an onClick event;
5. Add the following code to the new event (replace elementName with the name of the element from step 1):

if ($w("#elementName").hidden) {
    $w("#elementName").show();
} else {
    $w("#elementName").hide();
}

Basically when you click the button the code will show the element if it’s hidden and hide it if it’s not hidden. As we added an animation in step 3, the animation should play whenever the element shows up, but that only happens the first time.

» Please fix this.

Hey Daniel, thanks for explaining this in detail. We will be forwarding this information to the appropriate department.