Skip to content

Commit 41e9ad2

Browse files
committed
Fix missing final newline.
1 parent 4ffafaa commit 41e9ad2

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

example/web/callback.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
const AUTH_RESPONSE_KEY = "openidconnect_auth_response_info";
88

99
window.onload = function () {
10-
if (window.opener && window.opener !== window) { //Used when working as a popup. Uses post message to respond to the parent window
10+
if (window.opener && window.opener !== window) { //Used when working as a popup. Uses post message to respond to the parent window
1111
var parent = window.opener ?? window.parent;
1212
parent.postMessage(location.href, "*");
13-
} else { //Used for redirect loop functionality.
14-
//Get the original page destination
13+
} else { //Used for redirect loop functionality.
14+
//Get the original page destination
1515
const destination = sessionStorage.getItem(AUTH_DESTINATION_KEY || "/");
1616
sessionStorage.removeItem(AUTH_DESTINATION_KEY);
1717
//Store the current window location that will be used to get the information for authentication
@@ -27,4 +27,4 @@
2727
<body>
2828
</body>
2929

30-
</html>
30+
</html>

0 commit comments

Comments
 (0)