-
Notifications
You must be signed in to change notification settings - Fork 518
Angular/Aurelia/React Template: IE9 Support #484
Comments
Also as per #504 we need to polyfill |
Also as per #386, we need to polyfill |
With regards to the Redux template ... I've just added
to |
Sorry but no. If there was an update it would be posted here already. |
Hi Steve, Thank you for your response. Is there any chance on this getting fixed. We followed the guide on browser support and are more than half way through our project. |
I can't speak for Aurelia and React as I'm not sure this fixes those, but for Angular you need these polyfills: /***************************************************************************************************
* BROWSER POLY FILLS
*/
/** IE9, IE10 and IE11 requires all of the following polyfills. **/
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';
/** IE10 and IE11 requires the following for NgClass support on SVG elements */
// import 'classlist.js'; // Run `npm install --save classlist.js`.
// import 'web-animations-js'; // Run `npm install --save web-animations-js`.
/** Evergreen browsers require these. **/
import 'core-js/es6/reflect';
import 'core-js/es7/reflect';
/**
* Date, currency, decimal and percent pipes.
* Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10
*/
// import 'intl'; // Run `npm install --save intl`. |
IE polyfills is no longer something we'd control from the code in this repo (or the templating repo). Since we're now moving to use the standard project structures for each SPA framework (e.g., Angular CLI, create-react-app), the decision on whether or not to include polyfills would come from the SPA frameworks themselves. |
Hi
Currently using the latest version of the generator, 0.6.1, the Angular 2 Template is broken in IE9 due to the browser not supporting WeakMaps.
I've noticed that previously an effort was made to fix IE9 issues, #172. Thinking a shim could maybe be added to improve legacy browser support? IE10 and up is working beautifully 👌
The text was updated successfully, but these errors were encountered: