Landing page screenshot issue
- The iPhone screenshots used throughout the site used an XHTML attribute not supported by older browsers. The issue in question resembled the following:
<svg ...>
<image href="/path/to/screenshot.png" ... />
</svg>
- Older browsers were unable to understand the
hrefmost likely due to a namespace conflict. The image therefore was not loaded because the browser did not know the address of the resource. - The attribute, with proper prefixed namespace
xlink:hrefis instead used. This is written in React as propxlinkHref.
Made with ❤️ by Hux Product