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
{{ message }}
This repository was archived by the owner on Aug 21, 2019. It is now read-only.
When "css3dSupported" is false in line 781 no object will be generated and the return value of "getBrowserTransitionObject" wille subsequently be "null". This is the case in every browser that does not support "translate3d", in this here case IE9.
Since the object is "null" in line 652 "if (smartData.transitionObject != null)" will evaluate to false, thus the else case in lines 660/661 will never be executed as it will only be executed when "smartData.transitionObject != null" and "smartData.transitionObject.css3dSupported == false", an unreachable state as the first prevents the later.
Based on this "translateX" in line 661 will never be executed -> Content not scaled to Container in IE9.
I hope this helps fixing the issue,
thank you in advance.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When "css3dSupported" is false in line 781 no object will be generated and the return value of "getBrowserTransitionObject" wille subsequently be "null". This is the case in every browser that does not support "translate3d", in this here case IE9.
Since the object is "null" in line 652 "if (smartData.transitionObject != null)" will evaluate to false, thus the else case in lines 660/661 will never be executed as it will only be executed when "smartData.transitionObject != null" and "smartData.transitionObject.css3dSupported == false", an unreachable state as the first prevents the later.
Based on this "translateX" in line 661 will never be executed -> Content not scaled to Container in IE9.
I hope this helps fixing the issue,
thank you in advance.
The text was updated successfully, but these errors were encountered: