BenjaminBrandmeier / angular2-image-gallery

Image Gallery built with Angular 17+, node.js and GraphicsMagick

Home Page:https://oidamo.de/blog/gallery-demo

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

IE 11 currently broken

BenjaminBrandmeier opened this issue · comments

With the new release of 0.7.0 it seems that IE 11 is currently broken.

This might be related to the fact that we are building ES 2015 library modules.

Make sure to include the following modules. If you are using angular-cli, uncommented them inside polyfills.ts:

import 'core-js/es6/symbol';
import 'core-js/es6/object';
import 'core-js/es6/function';
import 'core-js/es6/parse-int';
import 'core-js/es6/parse-float';
import 'core-js/es6/number';
import 'core-js/es6/math';
import 'core-js/es6/string';
import 'core-js/es6/date';
import 'core-js/es6/array';
import 'core-js/es6/regexp';
import 'core-js/es6/map';
import 'core-js/es6/set';

import 'web-animations-js';

This fixes the issues.