reconnect

This commit is contained in:
Nasir Anthony Montalvo
2026-01-26 02:25:43 -06:00
parent 6609527c97
commit 0a854da998
135 changed files with 8792 additions and 1 deletions

11
.github/_includes/js/modal-hash-js.html vendored Normal file
View File

@@ -0,0 +1,11 @@
<script>
window.addEventListener('load', function () {
if (window.location.hash) {
/* if url has a hash, open the related item modal */
var hashModal = decodeURIComponent(location.hash.substr(1));
if (document.querySelector('#' + hashModal + 'Card a')) {
document.querySelector('#' + hashModal + 'Card a').click();
}
}
});
</script>