You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On the latest beta, I had an issue with an image that dims on hover. The image would sometimes remain stuck in the dimmed state, with further mouse hovers doing nothing.
I was able to reliably reproduce the problem by very quickly moving the mouse across the picture several times.
The JS of Semantic UI bugs out at line 16972:
return module.cache.animation || false;
The message:
Uncaught TypeError: Cannot read property 'animation' of undefined
I didn't dig into the code, but adding the following to the currentAnimation function seems to solve the issue:
if (module.cache === undefined) {
return false
}
The text was updated successfully, but these errors were encountered:
On the latest beta, I had an issue with an image that dims on hover. The image would sometimes remain stuck in the dimmed state, with further mouse hovers doing nothing.
I was able to reliably reproduce the problem by very quickly moving the mouse across the picture several times.
The JS of Semantic UI bugs out at line 16972:
The message:
I didn't dig into the code, but adding the following to the currentAnimation function seems to solve the issue:
The text was updated successfully, but these errors were encountered: