I am working on Angular 8.
I have observed some problems with Internet Explorer version 11.
I am not able to perform any feature of my application when I close the console or inspect element.
when I load my application IE11 then if I inspect element and goto the console then I am able to perform my application features (my application has some features like creation of the topics, deletion of the topics, etc) but when I close the inspect element or console I am not able to perform any feature.
I did some R & D on the internet and updated my source code with some libraries that are required for the IE11 version (like classlist etc).
some of them are mentioned below.
import 'core-js/es6/symbol';
import 'core-js/es6/promise';
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';
can anyone suggest me where I am doing something wrong?