-
Notifications
You must be signed in to change notification settings - Fork 11.9k
Description
Bug Report or Feature Request (mark with an x
)
- [x ] bug report -> please search issues before submitting
- [ ] feature request
Command (mark with an x
)
- [ ] new
- [x ] build
- [ ] serve
- [ ] test
- [ ] e2e
- [ ] generate
- [ ] add
- [ ] update
- [ ] lint
- [ ] xi18n
- [x ] run
- [ ] config
- [ ] help
- [ ] version
- [ ] doc
Versions
Repro steps
The log given by the failure
Desired functionality
Mention any other details that might be useful
When i clicked on the menus it show me this in IE console
https://www.screencast.com/t/kxgnKCAV
My polyfils.ts file is
/**
- This file includes polyfills needed by Angular and is loaded before the app.
- You can add your own extra polyfills to this file.
- This file is divided into 2 sections:
-
- Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers.
-
- Application imports. Files imported after ZoneJS that should be loaded before your main
-
file.
- The current setup is for so-called "evergreen" browsers; the last versions of browsers that
- automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera),
- Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile.
- Learn more in https://angular.io/docs/ts/latest/guide/browser-support.html
*/
/***************************************************************************************************
- BROWSER POLYFILLS
*/
/** 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/weak-map';
import 'core-js/es6/set';
import 'core-js/es7/array';
/** IE10 and IE11 requires the following for NgClass support on SVG elements */
import 'classlist.js'; // Run npm install --save classlist.js
.
/** IE10 and IE11 requires the following to support @angular/animation
. */
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';
/** ALL Firefox browsers require the following to support @angular/animation
. **/
import 'web-animations-js'; // Run npm install --save web-animations-js
.
/***************************************************************************************************
- Zone JS is required by Angular itself.
*/
import 'zone.js/dist/zone'; // Included with Angular CLI.
/***************************************************************************************************
- APPLICATION IMPORTS
*/
/**
- Date, currency, decimal and percent pipes.
- Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10
*/
// import 'intl'; // Runnpm install --save intl
.
import 'intl';
import 'intl/locale-data/jsonp/en.js';
//My Package.json file is
{
"name": "angly",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "6.0.7",
"@angular/common": "6.0.7",
"@angular/compiler": "6.0.7",
"@angular/core": "6.0.7",
"@angular/forms": "6.0.7",
"@angular/http": "6.0.7",
"@angular/platform-browser": "6.0.7",
"@angular/platform-browser-dynamic": "6.0.7",
"@angular/router": "6.0.7",
"@fancyapps/fancybox": "^3.3.5",
"classlist.js": "^1.1.20150312",
"core-js": "^2.5.7",
"font-awesome": "^4.7.0",
"hammerjs": "2.0.8",
"intl": "^1.2.5",
"ionicons": "^3.0.0",
"jquery": "^3.3.1",
"ngx-slick": "^0.1.3",
"popper.js": "^1.14.3",
"rxjs": "^6.2.1",
"rxjs-compat": "^6.2.1",
"web-animations-js": "^2.3.1",
"zone.js": "^0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.6.8",
"@angular/cli": "6.0.8",
"@angular/compiler-cli": "6.0.7",
"@angular/language-service": "6.0.7",
"@types/jasmine": "2.8.8",
"@types/jasminewd2": "2.0.3",
"@types/node": "10.5.2",
"codelyzer": "4.4.2",
"exports-loader": "^0.7.0",
"jasmine-core": "3.1.0",
"jasmine-spec-reporter": "4.2.1",
"karma": "2.0.4",
"karma-chrome-launcher": "2.2.0",
"karma-cli": "1.0.1",
"karma-coverage-istanbul-reporter": "2.0.1",
"karma-jasmine": "1.1.2",
"karma-jasmine-html-reporter": "1.2.0",
"protractor": "^5.3.2",
"ts-node": "7.0.0",
"tslint": "5.10.0",
"typescript": "^2.7.2"
}
}