Refactor scripts into modules

This commit is contained in:
Kiyomichi Kosaka
2025-06-20 16:25:21 +02:00
parent ce17d2d5bf
commit a9b90729ff
7 changed files with 219 additions and 206 deletions
+8 -6
View File
@@ -54,13 +54,15 @@ An interactive web app that visualizes the **CosmoChron Binary Epoch (CoBiE)** t
```
├── index.html # Main HTML markup
├── analog.html # Analog clock interface
├── clock.js # Clock logic
├── style.css # Separated styles
├── script.js # JavaScript logic
├── README.md # This documentation
── assets/ # (Optional) images or external CSS/JS
├── cobie.js # CoBiE time system utilities
├── utils.js # Generic helper functions
├── animate.js # Shared animations
├── events.js # Sample calendar events
── style.css # Separated styles
├── script.js # Page interactions
├── README.md # This documentation
└── test/ # Unit tests
```
## macOS Widget