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?