You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Microsoft Authentication Library for JavaScript (MSAL.js) is generated for [JavaScript ES5](https://fr.wikipedia.org/wiki/ECMAScript#ECMAScript_Edition_5_.28ES5.29) so that it can run in Internet Explorer. There are, however, a few things to know.
27
27
28
28
## Authoring an application to run in Internet Explorer
29
-
If you intend to use msal.js in applications that can run in Internet Explorer, you will need to add a reference to a promise polyfill before referencing the msal.js script.
29
+
If you intend to use MSAL.js in applications that can run in Internet Explorer, you will need to add a reference to a promise polyfill before referencing the MSAL.js script.
This is because Internet Explorer does not support JavaScript promises natively.
36
36
37
-
## Debugging an application runing in Internet Explorer
37
+
## Debugging an application running in Internet Explorer
38
38
39
39
### Running in production
40
-
If you deploy your application to production (for instance in Azure Web apps), this will normally work fine, provided the end user has accepted popups. We tested it with Internet Explorer 11.
40
+
Deploying your application to production (for instance in Azure Web apps)normally works fine, provided the end user has accepted popups. We tested it with Internet Explorer 11.
41
41
42
42
### Running locally
43
-
If you want to run and debug locally your application running in Internet Explorer you need to be aware of the following considerations (assume that you want to run your application as *http://localhost:1234*):
43
+
If you want to run and debug locally your application running in Internet Explorer, you need to be aware of the following considerations (assume that you want to run your application as *http://localhost:1234*):
44
44
45
-
- Internet Explorer has a security mechanism named "protected mode" which will prevent msal.js to work correctly. Among the symptoms, after you sign-in, the page can be redirected to http://localhost:1234/null.
45
+
- Internet Explorer has a security mechanism named "protected mode", which prevents MSAL.js from working correctly. Among the symptoms, after you signin, the page can be redirected to http://localhost:1234/null.
46
46
47
47
- To run and debug your application locally, you'll need to disable this "protected mode". For this:
0 commit comments