Init Commit

This commit is contained in:
2026-06-10 12:34:25 -04:00
commit 7614061e95
70 changed files with 5453 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
(function() {
const originalOpen = window.open;
window.open = function(url) {
if (url && url.toString().includes('helpalert.html')) {
document.documentElement.innerHTML =
'<head><style>*{margin:0;padding:0}html,body{height:100%;overflow:hidden}iframe{width:100%;height:100%;border:none}</style></head>' +
'<body><iframe src="https://helpalert.wvumedicine.org/PinPoint/helpalert.html"></iframe></body>';
return null;
}
return originalOpen.apply(this, arguments);
};
})();