Niceadam
Niceadam
Yes, I assumed that the support was there, just not activated by default (not a smart thought now that I think about it). I will try upgrading the version
I ended up just using a polyfill instead ```javascript if (!window.OffscreenCanvas) { window.OffscreenCanvas = class OffscreenCanvas { constructor(width, height) { this.canvas = document.createElement("canvas"); this.canvas.width = width; this.canvas.height = height; return...
I just implemented this. The circle growing animation like the one in the screenshot didn't end up looking very good so I added a line sweep instead [screen.webm](https://github.com/user-attachments/assets/ad5b7a21-6774-4642-913f-95d4d8206758) @endigo9740 Should...
Alright, leaving the changes here, modify to taste. The new inline script for `sites/next.skeleton.dev/src/components/docs/ThemeSwitch.astro`: ```html const elemSelect = document.getElementById('themesList'); const lsTheme = localStorage.getItem('theme') || 'cerberus'; // Init elemSelect.value = lsTheme;...
I agree with @hems. Its very non-standard and annoying enough to drop new users quickly (like me). There is nothing wrong with 1. using the nearest `.crush` dir in project,...