Deploying to gh-pages from @ psforever/PSF-LoginServer@6c3fd970c4 🚀

This commit is contained in:
jgillich 2023-04-15 19:13:59 +00:00
parent 2ad889bdcc
commit 3244d84b1e
3887 changed files with 7831 additions and 7826 deletions

View file

@ -479,6 +479,13 @@ div#content-container > div#content {
margin: 4em auto 0;
}
a.anchorToMember {
display: inline-block;
position: relative;
top: -5em;
width: 0;
}
div#content-container > div#subpackage-spacer {
float: right;
height: 100%;

View file

@ -274,7 +274,7 @@ $(document).ready(function() {
// highlight and jump to selected member if an anchor is provided
if (window.location.hash) {
var jqElem = findElementByHash(window.location.hash);
var jqElem = findElementByHash(decodeURIComponent(window.location.hash));
if (jqElem.length > 0) {
if (jqElem.hasClass("toggleContainer")) toggleShowContentFct(jqElem);
else exposeMember(jqElem);
@ -355,7 +355,7 @@ function initInherit() {
groupParents[$(this).attr("name")] = $(this);
});
$("#types > ol > li").each(function(){
$("#types > ol > li").add("#deprecatedTypes > ol > li").each(function(){
var mbr = $(this);
this.mbrText = mbr.find("> .fullcomment .cmt").text();
var qualName = mbr.attr("name");