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

IE < 10 : Content not scaled to Container #32

@BCW86

Description

@BCW86

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions