gitpay icon indicating copy to clipboard operation
gitpay copied to clipboard

Website doesn't load on Internet Explorer

Open alexanmtz opened this issue 5 years ago • 4 comments

On our Find a bug and fix program #272, one of our members reported that the site is not opening on Internet Explorer.

Level

Beginner

alexanmtz avatar Mar 23 '20 08:03 alexanmtz

Hey @alexanmtz

I'll work on this, please assign it to me.

Shawn-Noruzi avatar Jul 30 '20 06:07 Shawn-Noruzi

Yes @Shawn-Noruzi , you're now assigned 👍

alexanmtz avatar Jul 30 '20 21:07 alexanmtz

Some progress - still has bugs however. Things I've tried :

1.Having babel build with Ie>=11 in mind through modifying the .babelrc file

2.@babel/preset-env added with babel-core packages edited .babelrc to include "defaults" range of support for browsers

Ran into build issue stating conflict with babel-core and @babel-core versions Removed babel-core and replaced with @babel-core v 7.0.0 to resolve build issue Issue remains

babel -V shows we are working with version 6.26 babel -> Looking through 6.26 docs for Babel to find support for IE. babel-cli and babel-preset-env are for version 6.x and will not work with babel 7 packages (@babel/xxx)

3.Added proper support for IE11 with Babel 6.26 into .babelc

4.Got a regeneratorRuntime error: npm install --save-dev babel-plugin-transform-runtime babel-runtime + added babelrc lines for plugin support for runtime

Ran into Styled-components + promise undefined errors

  1. Installed Babel-polyfill to remove promise undefined error npm install --save babel-polyfill import "babel-polyfill"; in index.js at the very TOP before even importing react

Site now displays but overall UI interaction is slow with some features not even working properly such as the navbar scroll-to-element

Will continue to investigate

Shawn-Noruzi avatar Aug 13 '20 00:08 Shawn-Noruzi

Thanks @Shawn-Noruzi, so now we have a better view of the complexity to support this

alexanmtz avatar Aug 19 '20 08:08 alexanmtz

It works on Edge

alexanmtz avatar Oct 04 '23 17:10 alexanmtz