UI for angular that will work with IE8

I could not help but notice that the angular ui project recently abandoned IE8 support.

Unfortunately, a decent percentage of my users still use this outdated browser, and I cannot afford to do the same myself at this point.

Has anyone come across a complete user interface solution that resembles angular -ui but still supports IE8?

Can I use angular -ui with some restrictions on IE8, maybe?

In the worst case scenario, I will have to use Zurb foundation3 and the stub foundation-jQurish code in my angular controllers (F4 is mobile at first, so it doesn't display well on IE8)

+4
source share
1 answer

You can create a JavaScript file to provide functionality not found in IE8 and below. See this StackOverflow answer for an example.

Fix JavaScript array functions in Internet Explorer (indexOf, forEach, etc.)

I just added a JavaScript file with this code and worked fine for IE8. I even added some conditional browser tags to the link to the JS file.

+1
source

Source: https://habr.com/ru/post/1501170/


All Articles