Initial docs release

This commit is contained in:
rbalsleyMSFT
2026-02-03 19:06:07 -08:00
parent 2d6f6e5cb0
commit 3f825e4375
44 changed files with 2773 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
(function () {
'use strict';
function InitImageZoom() {
if (window.mediumZoom === undefined) {
return;
}
window.mediumZoom('.main-content img:not(.no-zoom):not([src$=".svg"])', {
margin: 24,
background: 'rgba(0,0,0,0.80)',
scrollOffset: 0
});
}
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', InitImageZoom);
return;
}
InitImageZoom();
})();