Issue with Safari (and workaround)
-
There is an issue with Safari when you configure Cookie Notice with no animation: the notice will not be hidden when you click the Ok button.
This is due the fact that Safari doesn’t fire the animationend event when animation-duration is set to 0.
There are a couple of workaroud to this issue: you can use an animation or you can modify front.css (and front.min.css) this way:#cookie-notice.cn-animated.cn-effect-none {
-webkit-animation-duration: 1ms;
animation-duration: 1ms;
}
- The topic ‘Issue with Safari (and workaround)’ is closed to new replies.