andreas
andreas
Similar issue to @gml-fahlgren - seems to only affect Firefox. **Edit**: Further debugging shows that the tab keyCode check is actually reached in FF ``` keyUp: function keyUp(e) { console.log('KeyCode...
@gml-fahlgren I've managed to find a fix, it's actually in the firefox/IE check in `keydown` listener: ``` if (isIE || isFirefox) { e.preventDefault(); e.data = e.key; this.textInput(e); } ``` And...
This will be fixed in Chrome 73 (works on Canary) ref: https://stackoverflow.com/questions/45133659/how-to-enable-preserve-log-in-network-tab-in-chrome-developer-tools-by-default
@vividvilla would you like to add a PR? Also interested in using `transition-group`
Even if `jsdom-global` won't add this as a default, I'd say some documentation would be helpful. Like how to enable `pretendToBeVisual` when initiating `jsdom-global`. From `jsdom` docs, I see that...
What about now? 👀
Same workaround fixes this issue if you only have Brave installed and no other Chromium-based browser (Mozilla's `web-ext` package uses chrome-launcher) ``` CHROME_PATH=/Applications/Brave\ Browser.app/Contents/MacOS/Brave\ Browser web-ext run --target chromium ```
Same error still exists when trying to load it as a natively supported ESM ☹️ ```javascript import p5 from 'https://cdn.skypack.dev/p5' import 'https://cdn.skypack.dev/p5/lib/addons/p5.sound' ``` My current workaround is to just include...
@doriclaudino did you ever figure this out? I have a similar situation, where I would like to get a stream of a `p5.Gain()` and add it to the video stream...
> Neither have I because this is packed with Vite plugins and no, we are not the maintainers of Vite and I am not familiar with most of this. Vite...