A tool for observing comind activity. https://comind.stream
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: Add inline script logging for AtprotoApi in index.html

+3 -1
+3 -1
index.html
··· 62 62 <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script> 63 63 <script src="https://cdn.jsdelivr.net/npm/@atproto/api@latest/dist/bundle.js"></script> 64 64 <script> 65 - console.log(Object.keys(window).filter((key) => true)); 65 + console.log("Inline script in index.html executing."); 66 + console.log("All keys on window object (from index.html):", Object.keys(window).filter((key) => true)); 67 + console.log("Checking for window.AtprotoApi in index.html inline script:", window.AtprotoApi); 66 68 </script> 67 69 <script type="module" src="app.js"></script> 68 70 </body>