Skip to content

Commit f9e48dc

Browse files
committed
fix spacing
1 parent 220535c commit f9e48dc

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

Demo/Pages/_Layout.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<link href="https://fonts.googleapis.com/css?family=Work+Sans" rel="stylesheet">
1515
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/sweetalert2" defer></script>
1616
<script type="text/javascript" src="~/js/jquery-3.6.0.min.js" defer></script>
17-
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js" integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4" crossorigin="anonymous" defer></script>
17+
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js" integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4" crossorigin="anonymous" defer></script>
1818
<!--<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js" integrity="sha384-alpBpkh1PFOepccYVYDB4do5UnbKysX5WZXm3XxPqe5iKTfUKjNkCk9SaVuEZflJ" crossorigin="anonymous"></script>-->
1919

2020
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/limonte-sweetalert2/6.10.1/sweetalert2.min.css" />

Demo/wwwroot/js/custom.register.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ async function registerNewCredential(newCredential) {
312312
}
313313

314314
async function registerCredentialWithServer(formData) {
315-
let response = await fetch('/makeCredential', {
315+
let response = await fetch('/makeCredential', {
316316
method: 'POST', // or 'PUT'
317317
body: JSON.stringify(formData), // data can be `string` or {object}!
318318
headers: {

Demo/wwwroot/js/mfa.login.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ async function verifyAssertionWithServer(assertedCredential) {
104104

105105
let response;
106106
try {
107-
let res = await fetch("/makeAssertion", {
107+
let res = await fetch("/makeAssertion", {
108108
method: 'POST', // or 'PUT'
109109
body: JSON.stringify(data), // data can be `string` or {object}!
110110
headers: {

Demo/wwwroot/js/mfa.register.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ async function registerNewCredential(newCredential) {
162162
}
163163

164164
async function registerCredentialWithServer(formData) {
165-
let response = await fetch('/makeCredential', {
165+
let response = await fetch('/makeCredential', {
166166
method: 'POST', // or 'PUT'
167167
body: JSON.stringify(formData), // data can be `string` or {object}!
168168
headers: {

Demo/wwwroot/js/passwordless.login.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ async function verifyAssertionWithServer(assertedCredential) {
9797

9898
let response;
9999
try {
100-
let res = await fetch("/makeAssertion", {
100+
let res = await fetch("/makeAssertion", {
101101
method: 'POST', // or 'PUT'
102102
body: JSON.stringify(data), // data can be `string` or {object}!
103103
headers: {

Demo/wwwroot/js/passwordless.register.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ async function registerNewCredential(newCredential) {
158158
}
159159

160160
async function registerCredentialWithServer(formData) {
161-
let response = await fetch('/makeCredential', {
161+
let response = await fetch('/makeCredential', {
162162
method: 'POST', // or 'PUT'
163163
body: JSON.stringify(formData), // data can be `string` or {object}!
164164
headers: {

Demo/wwwroot/js/usernameless.login.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ async function verifyAssertionWithServer(assertedCredential) {
9999

100100
let response;
101101
try {
102-
let res = await fetch("/makeAssertion", {
102+
let res = await fetch("/makeAssertion", {
103103
method: 'POST', // or 'PUT'
104104
body: JSON.stringify(data), // data can be `string` or {object}!
105105
headers: {

0 commit comments

Comments
 (0)