Show/hide wrong on live

On published website, I click any selection tag button and then a container box should appear with animation. As can see in the video, in most cases it works fine. However, sometimes after showing a box it instantly disappears. (It is important to mention that this is published web, on preview it works as it should work)

Here example how a typical cycle works:

	group . hide () 
        . then (( d ) =>  group . expand ()) 
        . then (( a ) =>  group . show ( 'roll' ,{ duration : 800 ,  direction : 'top' })) 
        . then (( e ) =>  loading . show ()) 
        . then (() => { main code } 

Could you please explain whether it is incorrect promise handling or it’s WIX feature/browser compatability?

Still having the issue. The biggest problem is that this does not happen constantly. If you open and close a window, there is a change it will work for few times.

Hey Robert,

This is a known issue for years, it occurs whenever you expand/collapse an element then show/hide it, unfortunately, I don’t think this will be fixed any time soon.

Is there any trick/method how to achieve the same goal (or similar)? Or only turning off animation will help…?

Removing the animation might help, I’m not sure though

What might help is an additional setTimeOut (ca. 10-100 msecs.) between the steps. I can remember, i have had similar problems with it once.