Skip to content

Commit

Permalink
Merge e288792 into 7209157
Browse files Browse the repository at this point in the history
  • Loading branch information
sameerag committed Jan 8, 2020
2 parents 7209157 + e288792 commit c919525
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/msal-core/src/utils/WindowUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export class WindowUtils {
ifr.style.position = "absolute";
ifr.style.width = ifr.style.height = "0";
ifr.style.border = "0";
ifr.setAttribute("sandbox", "allow-scripts allow-same-origin");
ifr.setAttribute("sandbox", "allow-scripts allow-same-origin allow-forms");
adalFrame = (document.getElementsByTagName("body")[0].appendChild(ifr) as HTMLIFrameElement);
} else if (document.body && document.body.insertAdjacentHTML) {
document.body.insertAdjacentHTML("beforeend", "<iframe name='" + iframeId + "' id='" + iframeId + "' style='display:none'></iframe>");
Expand Down

0 comments on commit c919525

Please sign in to comment.