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
Copy file name to clipboardExpand all lines: powerapps-docs/developer/common-data-service/walkthrough-registering-configuring-simplespa-application-adal-js.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -53,7 +53,7 @@ Click the **Get Accounts** button to retrieve 10 account records from your CDS f
53
53
> [!NOTE]
54
54
> The initial load of data from CDS for Apps may be slow as the operations to support authentication take place, but subsequent operations are much faster.
55
55
56
-
Finally, you can click the**Logout** button to logout.
56
+
Finally, you can click on**Logout** button to logout.
57
57
58
58
> [!NOTE]
59
59
> This SPA application is not intended to represent a pattern for developing robust SPA applications. It is simplified to focus on the process of registering and configuring the application.
@@ -96,7 +96,7 @@ Finally, you can click the **Logout** button to logout.
96
96
clientId: clientId,
97
97
postLogoutRedirectUri: pageUrl,
98
98
endpoints: endpoints,
99
-
cacheLocation:'localStorage', // enable this for IE, as sessionStorage does not work for localhost.
99
+
cacheLocation:'localStorage',
100
100
};
101
101
102
102
document.onreadystatechange=function () {
@@ -179,8 +179,8 @@ Finally, you can click the **Logout** button to logout.
179
179
retrievingAccountsMessage.textContent="Retrieving 10 accounts from "+ organizationURI +"/api/data/v9.1/accounts";
180
180
message.appendChild(retrievingAccountsMessage)
181
181
182
-
// Function to perform operation is passed as a parameter to the aquireTokenRedirect method
0 commit comments