Skip to content

Commit 142b973

Browse files
committed
review updates
1 parent c0f183e commit 142b973

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

articles/active-directory/develop/msal-js-known-issues-ie-edge-browsers.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,8 @@ Fixes for the authentication redirect loop issues have been released in [MSAL.js
4848

4949
When the `storeAuthStateInCookie` flag is enabled, MSAL.js will use the browser cookies to store the request state required for validation of the auth flows.
5050

51-
**Note**:
52-
- This fix is not yet available for the msal-angular and msal-angularjs wrappers.
53-
- This fix does not address the issue with Popup windows.
51+
> [!NOTE]
52+
> This fix is not yet available for the msal-angular and msal-angularjs wrappers. This fix does not address the issue with Popup windows.
5453
5554
Use workarounds below.
5655

@@ -72,3 +71,6 @@ Note, this will not solve the issue for InPrivate browsing since both session an
7271
There are cases when popups are blocked in IE or Microsoft Edge, for example when a second popup occurs during multi-factor authentication. You will get an alert in the browser to allow for the popup once or always. If you choose to allow, the browser opens the popup window automatically and returns a `null` handle for it. As a result, the library does not have a handle for the window and there is no way to close the popup window. The same issue does not happen in Chrome when it prompts you to allow popups because it does not automatically open a popup window.
7372

7473
As a **workaround**, developers will need to allow popups in IE and Microsoft Edge before they start using their app to avoid this issue.
74+
75+
## Next steps
76+
Learn more about [Using MSAL.js in Internet Explorer](msal-js-use-ie-browser.md).

articles/active-directory/develop/msal-js-use-ie-browser.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ ms.collection: M365-identity-device-management
2525

2626
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.
2727

28-
## Authoring an application to run in Internet Explorer
28+
## Run an app in Internet Explorer
2929
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.
3030

3131
```html
@@ -52,4 +52,7 @@ If you want to run and debug locally your application running in Internet Explor
5252
1. Restart Internet Explorer.
5353
1. Run and debug your application.
5454

55-
When you are done, restore the Internet Explorer security settings. Select **Settings** -> **Internet Options** -> **Security** -> **Reset all zones to default level**.
55+
When you are done, restore the Internet Explorer security settings. Select **Settings** -> **Internet Options** -> **Security** -> **Reset all zones to default level**.
56+
57+
## Next steps
58+
Learn more about [Known issues when using MSAL.js in Internet Explorer](msal-js-use-ie-browser.md).

0 commit comments

Comments
 (0)