Update the documentation pages

This commit is contained in:
OpenIddict Bot
2022-01-07 17:11:48 +00:00
parent 61bd763dc1
commit 5e7a14be12
143 changed files with 13729 additions and 11892 deletions

View File

@@ -1 +1,20 @@
// Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information.
// Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information.
function toggleMenu() {
var x = document.getElementById("sidebar");
var b = document.getElementById("blackout");
if (x.style.left === "0px")
{
x.style.left = "-350px";
b.classList.remove("showThat");
b.classList.add("hideThat");
}
else
{
x.style.left = "0px";
b.classList.remove("hideThat");
b.classList.add("showThat");
}
}