Skip to content
This repository has been archived by the owner. It is now read-only.

Commit bb74b51

Browse files
committed
Update to msal 0.1.3
1 parent 74d6b6b commit bb74b51

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

JavaScriptSPA/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ function showError(endpoint, error, errorDesc) {
9696
* @param {string} errorDesc - If error occur, the error message
9797
* @param {object} token - The token received from login
9898
* @param {object} error - The error
99-
* @param {string} tokenType - the token type: usually id_token
99+
* @param {string} tokenType - The token type: For loginRedirect, tokenType = "id_token". For acquireTokenRedirect, tokenType:"access_token"
100100
*/
101101
function loginCallback(errorDesc, token, error, tokenType) {
102102
if (errorDesc) {

JavaScriptSPA/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ <h3>ID Token Claims</h3>
2424

2525
<!-- This app uses cdn to reference msal.js (recommended).
2626
You can also download it from: https://github.com/AzureAD/microsoft-authentication-library-for-js -->
27-
<script src="//secure.aadcdn.microsoftonline-p.com/lib/0.1.1/js/msal.min.js"></script>
27+
<script src="https://secure.aadcdn.microsoftonline-p.com/lib/0.1.3/js/msal.min.js"></script>
2828
<!--<script type="text/javascript" src="msal.js"></script>-->
2929
<script type="text/javascript" src="msalconfig.js"></script>
3030

0 commit comments

Comments
 (0)