This repository was archived by the owner on Aug 21, 2019. It is now read-only.

Description
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.