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
This works perfectly in Chrome & Firefox but is buggy in Safari.
Safari cursor changes when otherNodes are in transition.
I would love to see this fixed...
The text was updated successfully, but these errors were encountered:
Apparently Safari suffers from the same compositorDoesNotOrderLayers bug as Chrome, although in a slightly different fashion.
Changing if (compositorDoesNotOrderLayers) {this.container.style.webkitTransformStyle = 'preserve-3d'}
to this.container.style.webkitTransformStyle = 'preserve-3d'; does the trick and since it's vendor prefixed you don't need to worry about other browsers.
I'm styling cursors via
cssText
by callingthis.fixCss(1);
inreorder
followed by
this.fixCss(0)
inreorder:onEnd
(requirescssMap:{},
in prototype)This works perfectly in Chrome & Firefox but is buggy in Safari.
Safari cursor changes when
otherNodes
are in transition.I would love to see this fixed...
The text was updated successfully, but these errors were encountered: