Deploying to gh-pages from @ PHPMailer/PHPMailer@ccce6f6ce9 🚀

This commit is contained in:
Synchro 2025-02-02 20:34:43 +00:00
parent 81f0ce7e8c
commit 7ff78e72e8
19 changed files with 39 additions and 19 deletions

View File

@ -1,3 +1,3 @@
1735101294
f307d35ba477bbb000a896e1920eeee6-phpdoc%3AphpDocumentor-projectDescriptor-filelist-1.0.0-5058f1af8388633f609cadb75a75dc9d
1741158224
30f78b4dc806b8751b98cc6cb6131dbb-phpdoc%3AphpDocumentor-projectDescriptor-filelist-1.0.0-5058f1af8388633f609cadb75a75dc9d
a:7:{i:0;s:70:"phpDocumentor-projectDescriptor-files-5f8e078be864ed8486fddbad05b27d06";i:1;s:70:"phpDocumentor-projectDescriptor-files-5235e770a4a6db6cf3d02263b2c58729";i:2;s:70:"phpDocumentor-projectDescriptor-files-2dc906e99780fd5299d3f0954ff1ed56";i:3;s:70:"phpDocumentor-projectDescriptor-files-347419032ebb0654765c31130abccad8";i:4;s:70:"phpDocumentor-projectDescriptor-files-24a3edc89af44219bd2d3fb9edb94965";i:5;s:70:"phpDocumentor-projectDescriptor-files-c90d79f50e3ca043ff7de62a53564098";i:6;s:70:"phpDocumentor-projectDescriptor-files-fa0ad41a437e10860d0043f1cb605570";}

View File

@ -273,3 +273,6 @@
.phpdocumentor-tag-link {
margin-right: var(--spacing-sm);
}
.phpdocumentor-uml-diagram svg {
cursor: zoom-in;
}

View File

@ -5,7 +5,7 @@
<title>PHPMailer</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<base href="./">
<link rel="icon" href="images/favicon.ico"/>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/base.css">

View File

@ -15,3 +15,20 @@
observer.observe(el);
})
})();
function openSvg(svg) {
// convert to a valid XML source
const as_text = new XMLSerializer().serializeToString(svg);
// store in a Blob
const blob = new Blob([as_text], { type: "image/svg+xml" });
// create an URI pointing to that blob
const url = URL.createObjectURL(blob);
const win = open(url);
// so the Garbage Collector can collect the blob
win.onload = (evt) => URL.revokeObjectURL(url);
};
var svgs = document.querySelectorAll(".phpdocumentor-uml-diagram svg");
for( var i=0,il = svgs.length; i< il; i ++ ) {
svgs[i].onclick = (evt) => openSvg(evt.target);
}